cleanup and fixes for config in home dir
This commit is contained in:
parent
57fa0afede
commit
6023ed42bf
13 changed files with 66 additions and 344 deletions
|
@ -7,14 +7,13 @@
|
|||
# Lets you load custom functions and zle widgets split into single files.
|
||||
#
|
||||
# zle widgets are stored in the "widgets" folder in your configuration directory
|
||||
# (default: /etc/zsh, if you want to use this in a user configuration file, set
|
||||
# the variable $zcpath to your zsh configuration directory)
|
||||
# (set with $ZDOTDIR, see manpage. defaults to /etc/zsh)
|
||||
#
|
||||
# functions are stored in the "functions" folder analogous.
|
||||
#
|
||||
|
||||
ZWIDGETPATH=${ZWIDGETPATH:-"${zcpath:-/etc/zsh}/widgets"}
|
||||
ZFUNCTIONPATH=${ZFUNCTIONPATH:-"${zcpath:-/etc/zsh}/functions"}
|
||||
ZWIDGETPATH=${ZWIDGETPATH:-"${ZDOTDIR:-/etc/zsh}/widgets"}
|
||||
ZFUNCTIONPATH=${ZFUNCTIONPATH:-"${ZDOTDIR:-/etc/zsh}/functions"}
|
||||
fpath+=( "${ZWIDGETPATH}" )
|
||||
fpath+=( "${ZFUNCTIONPATH}" )
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue