commit d62a2ff0e53bc90154d45b659157065158de059f
parent b34f08b3251b34061af86e1073b2fdae7d176950
Author: Anders Damsgaard Christensen <adc@geo.au.dk>
Date: Wed, 2 Jan 2013 22:10:11 +0100
added zshrc
Diffstat:
4 files changed, 34 insertions(+), 4 deletions(-)
diff --git a/.xinitrc b/.xinitrc
@@ -7,7 +7,8 @@ xsetroot -solid '#101010' &
xset -b
# Keyboard layout
-setxkbmap dk
+#setxkbmap dk
+setxkbmap us
# Read .xbindkeysrc for special key-bindings
xbindkeys
@@ -37,7 +38,8 @@ dunst &
#DEFAULT_SESSION=awesome
DEFAULT_SESSION=i3
+#DEFAULT_SESSION=enlightenment_start
case $1 in
- awesome|i3|xmonad) exec $1 ;;
+ awesome|i3|enlightenment_start) exec $1 ;;
*) exec $DEFAULT_SESSION ;;
esac
diff --git a/.xprofile b/.xprofile
@@ -4,4 +4,4 @@ export LC_ALL=
export LC_COLLATE="C"
export LC_CTYPE="en_US.UTF-8"
-export TERMINAL=xterm
+#export TERMINAL=xterm
diff --git a/.zshrc b/.zshrc
@@ -0,0 +1,28 @@
+# Lines configured by zsh-newuser-install
+HISTFILE=~/.histfile
+HISTSIZE=1000
+SAVEHIST=1000
+
+# Set vi-like movement on cmd lines
+bindkey -v
+
+# End of lines configured by zsh-newuser-install
+# The following lines were added by compinstall
+zstyle :compinstall filename '/home/adc/.zshrc'
+
+# Enable autocompletion
+autoload -Uz compinit
+compinit
+
+# End of lines added by compinstall
+
+# Make default promt use theme
+autoload -U promptinit
+promptinit
+prompt adam2
+
+# aliases
+alias ll='ls -alF'
+alias la='ls -A'
+alias l='ls -CF'
+
diff --git a/create_symlinks.sh b/create_symlinks.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# Home folder dotfiles
-for F in .bashrc .vimrc .tmux.conf .xpdfrc .signature .Xdefaults .Xmodmap .xinitrc .xprofile; do
+for F in .bashrc .vimrc .tmux.conf .xpdfrc .signature .Xdefaults .Xmodmap .xinitrc .xprofile .zshrc; do
SOURCE=$PWD/$F
TARGET=~/$F