Update on zshrc

This commit is contained in:
Thomas Forgione 2017-12-21 10:35:22 +01:00
parent f17690c9cd
commit 93ad9c6df3
No known key found for this signature in database
GPG Key ID: C75CD416BD1FFCE1
3 changed files with 5 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
zsh/extraconfig.zsh

View File

@ -38,6 +38,7 @@ alias cd..="cd .."
alias cd...="cd ../.."
alias cd....="cd ../../.."
alias ls="ls -h --color --group-directories-first"
alias l="ls"
alias sl="ls"
alias lsd="ls"

3
zshrc
View File

@ -16,3 +16,6 @@ source $DOTFILES/zsh/exports.zsh
source $DOTFILES/zsh/aliases.zsh
source $DOTFILES/zsh/functions.zsh
if [ -f $DOTFILES/zsh/extraconfig.zsh ]; then
source $DOTFILES/zsh/extraconfig.zsh
fi