dotfiles/vim/gvimrc

20 lines
336 B
VimL
Raw Normal View History

set shell=/bin/sh
" hide toolbar
set guioptions-=T
if has("gui_macvim")
" macmenu Window.Toggle\ Full\ Screen\ Mode key=<D-CR>
set transparency=12
" 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>
endif