diff --git a/.gitconfig b/.gitconfig index 4a218d0..cfc3223 100644 --- a/.gitconfig +++ b/.gitconfig @@ -11,3 +11,8 @@ editor = vim [pull] ff = only +[filter "lfs"] + required = true + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f + process = git-lfs filter-process diff --git a/.zshrc b/.zshrc index 6220e9d..4f56036 100644 --- a/.zshrc +++ b/.zshrc @@ -107,3 +107,7 @@ source $ZSH/oh-my-zsh.sh alias reboot-windows="systemctl reboot --boot-loader-entry=windows.conf" alias reboot-linux="systemctl reboot --boot-loader-entry=arch.conf" +alias zshrc="vim ~/.zshrc" + +export GEM_HOME="$(ruby -e 'puts Gem.user_dir')" +export PATH="$PATH:$GEM_HOME/bin"