Add configuration for zsh
- Add ~/.zshrc + Configure on how the `history` works + Enable nicer `cd` and globbing behavior + Enable tab completion, and make them feel nicer + Enable VI mode and add some VI-like key bindings - Add ~/.zlogout clearing the screen - Add ~/.config/zsh/.zshrc and make it dispatch to ~/.zshrc to make `zsh` use the same configuration even on more recent Debian/Ubuntu machines that do not look for ~/.zshrc any more - Ensure ~/.local/state/zsh/ exists
This commit is contained in:
parent
f2fb31a404
commit
d7f709931b
8 changed files with 114 additions and 0 deletions
4
.profile
4
.profile
|
|
@ -56,3 +56,7 @@ _prepend_to_path "$HOME/.local/bin"
|
|||
if [ -n "$BASH_VERSION" ] && [ -f "$HOME/.bashrc" ]; then
|
||||
. "$HOME/.bashrc"
|
||||
fi
|
||||
|
||||
|
||||
# `zsh`-specific configurations are automatically sourced from ~/.zshrc,
|
||||
# which then also ensures that this file is sourced
|
||||
|
|
|
|||
Loading…
Reference in a new issue