Add tmuxinator zsh completion | Set vim as default in zsh
This commit is contained in:
parent
0901fc6e10
commit
7506dfe3d5
1 changed files with 13 additions and 2 deletions
15
.zshrc
15
.zshrc
|
@ -98,10 +98,21 @@ source $ZSH/oh-my-zsh.sh
|
||||||
# Example aliases
|
# Example aliases
|
||||||
# alias zshconfig="mate ~/.zshrc"
|
# alias zshconfig="mate ~/.zshrc"
|
||||||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||||
|
|
||||||
|
# Set vim as default editor
|
||||||
|
export EDITOR='vim'
|
||||||
|
|
||||||
|
# Custom aliases
|
||||||
alias ll='ls -l'
|
alias ll='ls -l'
|
||||||
alias vi='vim'
|
alias vi='vim'
|
||||||
alias la='ls -la'
|
alias la='ls -la'
|
||||||
if [ -f ~/.dotfiles/.localcommands ]
|
|
||||||
then
|
if [ -f ~/.dotfiles/.localcommands ]; then
|
||||||
source ~/.dotfiles/.localcommands
|
source ~/.dotfiles/.localcommands
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Tmuxinator autocomplete
|
||||||
|
if [ -f ~/.bin/tmuxinator.zsh ]; then
|
||||||
|
source ~/.bin/tmuxinator.zsh
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue