mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-06-29 20:20:41 +00:00
Initial Commit
This commit is contained in:
commit
e456ebf6ae
12 changed files with 895 additions and 0 deletions
19
files/.config/sh/zsh/.zsh_config
Executable file
19
files/.config/sh/zsh/.zsh_config
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue