From 93ad9c6df315e6db33eb2ade02997d3faf93c40b Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Thu, 21 Dec 2017 10:35:22 +0100 Subject: [PATCH] Update on zshrc --- .gitignore | 1 + zsh/aliases.zsh | 1 + zshrc | 3 +++ 3 files changed, 5 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c3617f6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +zsh/extraconfig.zsh diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index 26bff45..63bd3f9 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -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" diff --git a/zshrc b/zshrc index c72a3c1..4b048d8 100644 --- a/zshrc +++ b/zshrc @@ -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