dotfiles/editors/vim/gvimrc

24 lines
568 B
VimL
Raw Normal View History

set guioptions-=T " hide toolbar
set guioptions+=Rr " Turn on scroll bars
if has("gui_macvim")
2011-02-18 12:45:40 +11:00
set transparency=7
" Fullscreen takes up entire screen
set fuoptions=maxhorz,maxvert
"Mac OS X style command line editing
cnoremap <A-Backspace> <C-W>
cnoremap <D-Backspace> <C-U>
" Command-/ to toggle comments
2011-10-21 02:47:28 +11:00
map <D-/> ,/
imap <D-/> ,/
vmap <D-/> ,/
end
" Source vimrc after saving it
autocmd! BufWritePost .gvimrc,gvimrc source $MYGVIMRC
autocmd! BufWritePost .vimrc,vimrc source $MYVIMRC | source $MYGVIMRC | NERDTreeToggle | NERDTreeToggle