11 lines
228 B
Bash
11 lines
228 B
Bash
|
#default apps
|
||
|
export EDITOR="vim"
|
||
|
|
||
|
#history stuff
|
||
|
# number of lines kept in history
|
||
|
export HISTSIZE=1000
|
||
|
# number of lines saved in the history after logout
|
||
|
export SAVEHIST=1000
|
||
|
# location of history
|
||
|
export HISTFILE=~/.zhistory
|