mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
sync up with Saleem
This commit is contained in:
parent
3df9426885
commit
2b2cc53f2b
1 changed files with 21 additions and 17 deletions
|
@ -10,26 +10,30 @@ fi
|
||||||
trap clear 0
|
trap clear 0
|
||||||
|
|
||||||
# shell options
|
# shell options
|
||||||
setopt AUTO_CD # directoy command does cd
|
setopt ALWAYS_TO_END # goto end of word on completion
|
||||||
setopt CORRECT # correct spelling of commands
|
setopt AUTO_CD # directoy command does cd
|
||||||
setopt AUTO_PUSHD # cd uses directory stack
|
setopt AUTO_PUSHD # cd uses directory stack
|
||||||
setopt CHASE_DOTS # resolve .. in cd
|
setopt BASH_AUTO_LIST # list completions on second tab
|
||||||
setopt CHASE_LINKS # resolve symbolic links in cd
|
setopt CDABLE_VARS # cd var works if $var is a directory
|
||||||
setopt CDABLE_VARS # cd var works if $var is a directory
|
setopt CHASE_DOTS # resolve .. in cd
|
||||||
setopt PUSHD_SILENT # make pushd quiet
|
setopt CHASE_LINKS # resolve symbolic links in cd
|
||||||
setopt ALWAYS_TO_END # goto end of word on completion
|
setopt COMPLETE_IN_WORD # completion works inside words
|
||||||
setopt EXTENDED_GLOB # use zsh globbing extensions
|
setopt CORRECT # correct spelling of commands
|
||||||
setopt SH_WORD_SPLIT # split non-array variables
|
setopt EXTENDED_GLOB # use zsh globbing extensions
|
||||||
setopt BASH_AUTO_LIST # list completions on second tab
|
setopt INTERACTIVE_COMMENTS # allow comments in interactive shells
|
||||||
setopt LIST_ROWS_FIRST # list completions across
|
setopt LIST_ROWS_FIRST # list completions across
|
||||||
setopt COMPLETE_IN_WORD # completion works inside words
|
setopt MAGIC_EQUAL_SUBST # special expansion after all =
|
||||||
setopt MAGIC_EQUAL_SUBST # special expansion after all =
|
setopt PUSHD_SILENT # make pushd quiet
|
||||||
|
setopt PROMPT_SUBST # allow substitutions in the prompt
|
||||||
unsetopt BEEP # stop beeping!
|
setopt SH_WORD_SPLIT # split non-array variables
|
||||||
unsetopt LIST_BEEP # seriously, stop beeping!
|
|
||||||
|
|
||||||
unsetopt NO_MATCH # dont error on no glob matches
|
unsetopt NO_MATCH # dont error on no glob matches
|
||||||
|
|
||||||
|
# (disable) beeping
|
||||||
|
unsetopt BEEP # stop beeping!
|
||||||
|
unsetopt HIST_BEEP # really, stop beeping!
|
||||||
|
unsetopt LIST_BEEP # seriously, stop beeping!
|
||||||
|
|
||||||
# history
|
# history
|
||||||
export HISTSIZE=1000
|
export HISTSIZE=1000
|
||||||
export SAVEHIST=1000
|
export SAVEHIST=1000
|
||||||
|
|
Loading…
Add table
Reference in a new issue