diff options
author | Nick Shipp <nick@shipp.ninja> | 2017-02-14 08:41:16 -0500 |
---|---|---|
committer | Nick Shipp <nick@shipp.ninja> | 2017-02-14 08:41:16 -0500 |
commit | 24a605577c8e09a75f8f717f9df1bdc6c8dd8ec3 (patch) | |
tree | 794db72af4e1ddf41cff2d1f6371b27103562d69 /zsh/00_params.zsh |
initial commit
Diffstat (limited to 'zsh/00_params.zsh')
-rw-r--r-- | zsh/00_params.zsh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/zsh/00_params.zsh b/zsh/00_params.zsh new file mode 100644 index 0000000..15b8e3e --- /dev/null +++ b/zsh/00_params.zsh @@ -0,0 +1,15 @@ +PROMPT='%F{249}%D{%H}%F{245}%D{%M}%F{242}%D{%S} %F{red}%n%f@%F{blue}%m%f %F{yellow}%1~%f %(!.#.$) ' + +FCEDIT=$VISUAL +HISTFILE=$XDG_DATA_HOME/zsh/history +HISTSIZE=10000 +SAVEHIST=10000000 +REPORTTIME=60 + +fpath=($ZDOTDIR/Functions $fpath) +path=($HOME/bin /usr/bin/vendor_perl $path) + +# Expand ~zsh to $ZDOTDIR +hash -d zsh=$ZDOTDIR +# Same for vim +hash -d vim=$XDG_CONFIG_HOME/vim |