Initial Commit

This commit is contained in:
koumakpet 2020-02-29 22:11:42 +01:00
commit e456ebf6ae
12 changed files with 895 additions and 0 deletions

View file

@ -0,0 +1,19 @@
# Enable colors
autoload -U colors && colors
# Basic auto/tab complete
autoload -U compinit
zstyle ':completion:*' menu select
zmodload zsh/complist
compinit
_comp_options+=(globdots)
# Setup aliases
if [ -f ~/.config/sh/.aliases ]; then
source ~/.config/sh/.aliases
fi
# Load zsh-syntax-highlighting (should be last)
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh