[zshrc] Back to TextMate, VS Code is too slow
This commit is contained in:
parent
a42d590f5d
commit
cb63fb1907
1 changed files with 5 additions and 2 deletions
7
zshrc
7
zshrc
|
|
@ -45,7 +45,10 @@ else
|
|||
fi
|
||||
fi
|
||||
|
||||
if command_exists vim; then
|
||||
if command_exists mate; then
|
||||
export EDITOR="mate -w"
|
||||
export VISUAL="mate -w"
|
||||
elif command_exists vim; then
|
||||
export EDITOR="vim"
|
||||
export VISUAL="vim"
|
||||
else
|
||||
|
|
@ -197,7 +200,7 @@ prompt sjs
|
|||
# --------------------------------
|
||||
alias bgd='bg; disown %1'
|
||||
alias cp='nocorrect cp' # don't correct spelling for 'cp'
|
||||
alias e='code -n'
|
||||
alias e='mate'
|
||||
alias ez="$EDITOR ~/.zshrc && source ~/.zshrc"
|
||||
|
||||
alias mkdir='nocorrect mkdir' # don't correct spelling for 'mkdir'
|
||||
|
|
|
|||
Loading…
Reference in a new issue