diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | README.markdown | 2 | ||||
-rw-r--r-- | zsh/zshrc | 2 |
3 files changed, 8 insertions, 0 deletions
@@ -37,6 +37,7 @@ install-vim-plugins \ install-wyrd \ install-x \ + install-zsh \ test \ test-bash \ test-bin \ @@ -235,6 +236,9 @@ install-x : install -pm 0644 -- X/xbindkeysrc "$(HOME)"/.xbindkeysrc install -pm 0644 -- X/xinitrc "$(HOME)"/.xinitrc +install-zsh : + install -pm 0644 -- zsh/zshrc "$(HOME)"/.zshrc + test : test-sh test-bash test-bin test-urxvt test-sh : diff --git a/README.markdown b/README.markdown index 9c3aac2c..b8086fe2 100644 --- a/README.markdown +++ b/README.markdown @@ -80,6 +80,8 @@ Configuration is included for: frontend for [Remind](http://www.roaringpenguin.com/products/remind) * [X11](http://www.x.org/wiki/) — Windowing system with network transparency for Unix +* [Zsh](http://www.zsh.org/) — Bourne-style shell designed for interactive + use Also included are a few scripts for `~/.local/bin`, and their `man(1)` pages. diff --git a/zsh/zshrc b/zsh/zshrc new file mode 100644 index 00000000..1789d66a --- /dev/null +++ b/zsh/zshrc @@ -0,0 +1,2 @@ +exec bash + |