Add usage comments to scripts
This commit is contained in:
parent
470281595f
commit
82a29ae54b
2
zlogin
2
zlogin
@ -0,0 +1,2 @@
|
|||||||
|
# .zlogin [3] Used for executing user's commands at ending of initial progress,
|
||||||
|
# will be sourced when starting as a login shell.
|
2
zprofile
2
zprofile
@ -0,0 +1,2 @@
|
|||||||
|
# .zprofile [1] Used for executing user's commands at start, will be sourced
|
||||||
|
# when starting as a login shell.
|
4
zshenv
4
zshenv
@ -1,3 +1,7 @@
|
|||||||
|
# .zshenv [0] Used for setting user's environment variables; it should not
|
||||||
|
# contain commands that produce output or assume the shell is attached to a
|
||||||
|
# tty. This file will always be sourced.
|
||||||
|
|
||||||
# Enable saving command history to file
|
# Enable saving command history to file
|
||||||
HISTFILE=$HOME/.histfile
|
HISTFILE=$HOME/.histfile
|
||||||
HISTSIZE=5000
|
HISTSIZE=5000
|
||||||
|
3
zshrc
3
zshrc
@ -1,3 +1,6 @@
|
|||||||
|
# .zshrc [2] Used for setting user's interactive shell configuration and
|
||||||
|
# executing commands, will be sourced when starting as an interactive shell.
|
||||||
|
|
||||||
# Load plugin scripts
|
# Load plugin scripts
|
||||||
plugin-load() { source ~/.config/zsh/$1/$1.plugin.zsh }
|
plugin-load() { source ~/.config/zsh/$1/$1.plugin.zsh }
|
||||||
plugin-load zsh-syntax-highlighting
|
plugin-load zsh-syntax-highlighting
|
||||||
|
Loading…
x
Reference in New Issue
Block a user