mirror of https://github.com/bjeanes/dotfiles.git
20 lines
336 B
VimL
20 lines
336 B
VimL
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
|