mirror of https://github.com/bjeanes/dotfiles.git
23 lines
604 B
VimL
23 lines
604 B
VimL
set guioptions-=T " hide toolbar
|
|
set guioptions+=Rr " Turn on scroll bars
|
|
|
|
if has("gui_macvim")
|
|
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
|
|
map <D-/> <plug>NERDCommenterToggle
|
|
imap <D-/> <Esc><plug>NERDCommenterToggle i
|
|
end
|
|
|
|
" Source vimrc after saving it
|
|
autocmd! BufWritePost .gvimrc,gvimrc source $MYGVIMRC
|
|
autocmd! BufWritePost .vimrc,vimrc source $MYVIMRC | source $MYGVIMRC | NERDTreeToggle | NERDTreeToggle
|
|
|