diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2014-02-21 18:13:00 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2014-02-21 18:13:00 +0100 |
commit | a3c5317606dafcd5cc569b8b68d7e00ea9624c03 (patch) | |
tree | f686c5dbe9e9477ed678538c42a2945e7d90a41d | |
parent | 5ef75bbf26e74b007359583d833906f59b460ce2 (diff) |
zshenv: Add 00_shell
-rw-r--r-- | .zsh/00_skeleton | 8 | ||||
-rw-r--r-- | .zsh/zshenv/00_shell | 11 |
2 files changed, 16 insertions, 3 deletions
diff --git a/.zsh/00_skeleton b/.zsh/00_skeleton index f28ffd4..d577548 100644 --- a/.zsh/00_skeleton +++ b/.zsh/00_skeleton @@ -1,11 +1,13 @@ -# <file name> +# zshenv/00_shell # -# <description> +# shell specific variables # -# Copyright © 2013 Tobias Klauser <tklauser@distanz.ch> +# Copyright © 2014 Tobias Klauser <tklauser@distanz.ch> # Released under the terms of the Artistic Licence 2.0 # # Source repository: git://git.distanz.ch/dotfiles/zsh.git +# let the world know we're using zsh (e.g. to use zsh for the shell command in make) +export SHELL=/bin/zsh # vim:ft=zsh diff --git a/.zsh/zshenv/00_shell b/.zsh/zshenv/00_shell new file mode 100644 index 0000000..3b7fa98 --- /dev/null +++ b/.zsh/zshenv/00_shell @@ -0,0 +1,11 @@ +# zshenv/00_shell +# +# <description> +# +# Copyright © 2014 Tobias Klauser <tklauser@distanz.ch> +# Released under the terms of the Artistic Licence 2.0 +# +# Source repository: git://git.distanz.ch/dotfiles/zsh.git + + +# vim:ft=zsh |