dotfiles/editors/vim/gvimrc

23 lines
565 B
VimL
Raw Normal View History

set guioptions-=T " hide toolbar
set guioptions+=Rr " Turn on scroll bars
if has("gui_macvim")
" Fullscreen takes up entire screen
set fuoptions=maxhorz,maxvert
2013-12-04 05:53:01 +11:00
set guifont=DejaVu\ Sans\ Mono\ for\ Powerline:h11
"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
2016-07-04 17:37:15 +10:00
autocmd! BufWritePost .vimrc,vimrc source $MYVIMRC | source $MYGVIMRC