diff options
author | Santo Cariotti <santo@dcariotti.me> | 2022-02-03 22:39:22 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2022-02-03 22:39:22 +0100 |
commit | e84e7ae169fa87f5b9312153bea1e5cd0eb2176c (patch) | |
tree | df245b240495c73ccb6a17bbc3974adbb83407ab /zsh | |
parent | 29204476ec351ce668379e5bb6f0bd0ab8facd51 (diff) |
zsh: add plugins and alias
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -24,10 +24,14 @@ export WORKON_HOME=$HOME/.virtualenvs source /usr/share/virtualenvwrapper/virtualenvwrapper.sh eval "$(direnv hook zsh)" +eval "$(jump shell)" +eval "$(mcfly init zsh)" + # Install Ruby Gems to ~/gems export GEM_HOME="$HOME/.gems" export PATH="$HOME/.gem/ruby/2.7.0/bin:$PATH" alias mutt=neomutt +alias gap="git add -p" export TERM=xterm-256color fpath+=${ZDOTDIR:-~}/.zsh_functions |