dotfiles/home/.zshrc

56 lines
2.1 KiB
Bash
Raw Normal View History

2021-01-28 22:43:33 +00:00
# ZSH files cleanup
2021-01-28 12:55:28 +00:00
export ZSH_CACHE="$HOME/.cache/zsh"
2021-01-28 22:43:33 +00:00
export ZSH_COMPDUMP="$ZSH_CACHE/zcompdump-$ZSH_VERSION" # for auto/tab completion
2021-01-14 12:38:43 +00:00
[ -f ~/.zsh-update ] && mv ~/.zsh-update $ZSH_CACHE/.zsh-update
2021-01-28 22:43:33 +00:00
[ -f ~/.sudo_as_admin_sucessful ] && rm ~/.sudo_as_admin_successful # Ubuntu makes this every with sudo usage
2020-10-22 16:00:38 +00:00
2021-01-28 22:43:33 +00:00
# History configuration
HISTFILE="$ZSH_CACHE/history"
2020-10-22 16:00:38 +00:00
HISTSIZE=10000
SAVEHIST=10000
2021-01-14 12:38:43 +00:00
# oh-my-zsh configuration
2020-10-22 23:15:52 +00:00
export ZSH="/usr/share/oh-my-zsh"
2020-10-22 16:00:38 +00:00
ZSH_THEME="af-magic"
2021-01-14 12:38:43 +00:00
UPDATE_ZSH_DAYS=5
2020-10-22 16:00:38 +00:00
ENABLE_CORRECTION="false"
2021-01-28 22:43:33 +00:00
source $ZSH/oh-my-zsh.sh # Run oh-my-zsh
2020-10-22 16:00:38 +00:00
# Basic auto/tab complete
2021-01-28 22:43:33 +00:00
autoload -Uz compinit
zmodload -i zsh/complist
2020-10-22 16:00:38 +00:00
compinit -d $ZSH_COMPDUMP
comp_options+=(globdots)
2021-01-28 22:43:33 +00:00
# ZSH Options
setopt appendhistory # save history entries as soon as they are entered
#setopt share_history # share history between different instances of the shell
setopt auto_cd # cd by typing directory name if it's not a command
setopt auto_list # automatically list choices on ambiguous completion
setopt auto_menu # automatically use menu completion
setopt always_to_end # move cursor to end if word had one match
#setopt correct_all # autocorrect commands
zstyle ':completion:*' menu select # # select completions with arrow keys
zstyle ':completion:*' group-name '' # group results by category
zstyle ':completion:::::' completer _expand _complete _ignored _approximate #enable approximate matches for completio
autoload -U colors && colors # enable color support
2021-01-28 12:55:28 +00:00
2021-01-14 12:38:43 +00:00
# Environmental variable exports, including XDG standard definitions
[ -f ~/.config/sh/environ ] && source ~/.config/sh/environ
2020-10-22 16:00:38 +00:00
# Setup aliases
[ -f ~/.config/sh/aliases ] && source ~/.config/sh/aliases
2021-01-14 12:38:43 +00:00
# Load handlers
[ -f ~/.config/sh/handlers ] && source ~/.config/sh/handlers
2021-01-28 22:43:33 +00:00
# Load key bindings
[ -f ~/.config/sh/keybinds ] && source ~/.config/sh/keybinds
2020-10-22 16:00:38 +00:00
2021-01-14 12:38:43 +00:00
# Load extensions (should be last)
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null # Syntax highlighting
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh 2>/dev/null # Auto suggestions
2021-01-28 11:56:31 +00:00
source /usr/share/autojump/autojump.zsh 2>/dev/null # Auto-Jump
2020-10-22 16:00:38 +00:00