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
|
||||
# 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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue