mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-04-28 05:02:26 +00:00
19 lines
394 B
Text
Executable file
19 lines
394 B
Text
Executable file
# 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
|