diff options
-rw-r--r-- | .config/zsh/.zshrc | 7 | ||||
-rw-r--r-- | README.md | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 70c4286..584ef80 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -21,10 +21,11 @@ setopt interactive_comments setopt complete_in_word # complete both ends of words setopt always_to_end # and move cursor to the end afterward setopt auto_menu # <tab><tab> brings up the menu ... -unsetopt menu_complete # ... and does not select the first option +setopt no_menu_complete # ... and does not select the first option setopt auto_param_slash # convenience: add trailing / after directories setopt extended_glob -unsetopt flow_control +setopt no_case_glob +setopt no_flow_control zstyle ':completion:*' special-dirs true # cache completions zstyle ':completion::complete:*' use-cache yes @@ -33,7 +34,7 @@ zstyle ':completion::complete:*' cache-path "$HOME/.zcompcache" autoload -Uz compinit && compinit # history -HISTFILE="$HOME/.zsh_history" +HISTFILE=${ZDOTDIR:-$HOME}/.zsh_history HISTSIZE=10000 SAVEHIST=$HISTSIZE setopt extended_history # write timestamp diff --git a/README.md b/README.md index 0532d2d..f4d4f45 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,11 @@ config config --local status.showUntrackedFiles no ## Other new machine setup ### installed packages +* base-devel +* fzf +* pass * vim * zsh (remember to `chsh -s $(which zsh)`) -* fzf ### sshd config ```bash @@ -59,4 +61,4 @@ Default mirrors were really slow for me. `sudo pacman-mirrors --fasttrack && sud `git clone https://github.com/jackhumbert/pinebook-pro-keyboard-updater` and follow the instructions. Have an external keyboard handy after step 1. ### Configure ZRAM - +Manjaro 20.06 appears to come with a /dev/zram0 preconfigured. |