]> git.sev.monster Git - dotfiles.git/blobdiff - base/.zshrc
clean .zprofile vars, update zsh opts, fix dpass
[dotfiles.git] / base / .zshrc
index 6cbdfe0e31788b66d05a3d7856212d2c73b2c2aa..e06c318d6ba169aa77f41d76b5c611b4d41c203f 100644 (file)
@@ -2,14 +2,22 @@
 fpath=(~/.zsh ~/.zsh/functions/Prompts "${fpath[@]}")
 
 ### options
 fpath=(~/.zsh ~/.zsh/functions/Prompts "${fpath[@]}")
 
 ### options
-setopt autocd extendedglob promptsubst
-unsetopt beep
-
-### history
-setopt appendhistory
+setopt NO_BEEP NO_CLOBBER
+## cd
+setopt AUTO_CD CDABLE_VARS
+## completion
+setopt GLOB_COMPLETE
+## line
+setopt EXTENDED_GLOB GLOB_DOTS MARK_DIRS NOMATCH NUMERIC_GLOB_SORT
+## prompt
+setopt PROMPT_SUBST
+## jobs
+setopt AUTO_CONTINUE
+## history
+setopt NO_HIST_SAVE_BY_COPY HIST_IGNORE_DUPS SHARE_HISTORY
 HISTFILE=~/.histfile
 HISTFILE=~/.histfile
-HISTSIZE=100
-SAVEHIST=100
+HISTSIZE=1000
+SAVEHIST=1000
 
 ### keys
 bindkey -v
 
 ### keys
 bindkey -v
This page took 0.034563 seconds and 4 git commands to generate.