summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitmodules3
m---------grml-etc-core0
-rw-r--r--zshrc.local28
3 files changed, 31 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..d4aa40b
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "grml-etc-core"]
+ path = grml-etc-core
+ url = git://git.grml.org/grml-etc-core.git
diff --git a/grml-etc-core b/grml-etc-core
new file mode 160000
+Subproject 5f07a91fbbec4a04c9dec58355ba94472cfbadb
diff --git a/zshrc.local b/zshrc.local
new file mode 100644
index 0000000..9309ddc
--- /dev/null
+++ b/zshrc.local
@@ -0,0 +1,28 @@
+
+bindkey -v
+
+export BROWSER=firefox
+export EDITOR=vim
+
+GPG_TTY=$(tty)
+export GPG_TTY
+
+export CC=clang
+export CXX=clang++
+
+PATH=~/.local/bin:$PATH:/usr/sbin
+export LD_LIBRARY_PATH=~/.local/lib:~/.local/lib64:$LD_LIBRARY_PATH
+export CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:~/.local/include
+
+sudo() {
+ if [ "$1" = "vim" ]
+ then
+ shift
+ sudoedit "$@"
+ else
+ command sudo "$@"
+ fi
+}
+
+export GTK_IM_MODULE="xim"
+