From a460728a6d37d3ffc48162045608f68687589f2e Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Thu, 24 May 2012 16:34:07 -0500 Subject: [PATCH] Turned off highlighting of curr line Also added alias for Mou --- vim/vimrc.symlink | 4 ++-- zsh/aliases.zsh | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink index 400bca6..afdf82e 100644 --- a/vim/vimrc.symlink +++ b/vim/vimrc.symlink @@ -52,8 +52,8 @@ if has("autocmd") autocmd FileType make setlocal ts=8 sts=8 sw=8 noexpandtab autocmd FileType ruby setlocal ts=2 sts=2 sw=2 expandtab autocmd FileType html setlocal ts=4 sts=4 sw=4 expandtab - autocmd WinEnter * setlocal cursorline - autocmd WinLeave * setlocal nocursorline + "autocmd WinEnter * setlocal cursorline + "autocmd WinLeave * setlocal nocursorline " automatically resize panes on resize autocmd VimResized * exe "normal! \=" "autocmd BufWritePost .vimrc source $MYVIMRC diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index 5b9a76a..b23bad2 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -12,3 +12,5 @@ alias grep='grep --color=auto' alias df='df -h' # disk free, in Gigabytes, not bytes alias du='du -h -c' # calculate disk usage for a folder +# Applications +alias mou='open -a Mou.app'