mirror of https://github.com/akelge/zsh
Support for mvim on OS X
This commit is contained in:
parent
c18775d93b
commit
bc00a718e7
12
zshrc
12
zshrc
|
@ -6,6 +6,7 @@
|
||||||
#
|
#
|
||||||
# Global Order: zshenv, zprofile, zshrc, zlogin
|
# Global Order: zshenv, zprofile, zshrc, zlogin
|
||||||
# $Id$
|
# $Id$
|
||||||
|
# $HeadURL$
|
||||||
|
|
||||||
setopt ALWAYS_TO_END
|
setopt ALWAYS_TO_END
|
||||||
setopt APPEND_HISTORY
|
setopt APPEND_HISTORY
|
||||||
|
@ -149,11 +150,12 @@ fi
|
||||||
if [ `uname -s` = "Darwin" ]; then
|
if [ `uname -s` = "Darwin" ]; then
|
||||||
export LSCOLORS="GxgxcxdxCxegedabagacad"
|
export LSCOLORS="GxgxcxdxCxegedabagacad"
|
||||||
# Alias for editors on OSX
|
# Alias for editors on OSX
|
||||||
alias vim='/Applications/MacVim.app/Contents/MacOS/Vim'
|
alias mvim = 'mvim --remote-tab-silent'
|
||||||
alias aquamacs='open -a Aquamacs\ Emacs'
|
alias vim = mvim
|
||||||
alias ldd='otool -L'
|
alias aquamacs = 'open -a Aquamacs\ Emacs'
|
||||||
alias ls='ls -F -G'
|
alias ldd = 'otool -L'
|
||||||
alias skill=killall
|
alias ls = 'ls -F -G'
|
||||||
|
alias skill = killall
|
||||||
alias lsrebuild='/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user'
|
alias lsrebuild='/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user'
|
||||||
|
|
||||||
if [ -f /opt/local/etc/init.sh ]; then
|
if [ -f /opt/local/etc/init.sh ]; then
|
||||||
|
|
Loading…
Reference in New Issue