From 7506dfe3d57cefcbd0f61c1dbe0b5354cea0088c Mon Sep 17 00:00:00 2001 From: saibotk Date: Fri, 7 Dec 2018 01:38:28 +0100 Subject: [PATCH] Add tmuxinator zsh completion | Set vim as default in zsh --- .zshrc | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index 09565da..7bda0f6 100644 --- a/.zshrc +++ b/.zshrc @@ -98,10 +98,21 @@ source $ZSH/oh-my-zsh.sh # Example aliases # alias zshconfig="mate ~/.zshrc" # alias ohmyzsh="mate ~/.oh-my-zsh" + +# Set vim as default editor +export EDITOR='vim' + +# Custom aliases alias ll='ls -l' alias vi='vim' alias la='ls -la' -if [ -f ~/.dotfiles/.localcommands ] -then + +if [ -f ~/.dotfiles/.localcommands ]; then source ~/.dotfiles/.localcommands fi + +# Tmuxinator autocomplete +if [ -f ~/.bin/tmuxinator.zsh ]; then + source ~/.bin/tmuxinator.zsh +fi +