forked from framallo/Vim-for-Rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gvim-for-rails.vim
30 lines (24 loc) · 1.11 KB
/
gvim-for-rails.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
" -----------------------------------------------------------------------------
" | VIM Settings |
" | GUI stuff |
" -----------------------------------------------------------------------------
" Default size of window
set columns=120
set lines=50
" OS Specific *****************************************************************
if has("gui_macvim")
set fuoptions=maxvert,maxhorz " fullscreen options (MacVim only), resized window when changed to fullscreen
set guifont=Monaco:h14
set guioptions-=T " remove toolbar
set stal=2 " turn on tabs by default
set guioptions+=c " remove mac dialogs or Ctrl+F7 toggles keyboard dialog navigation
elseif has("gui_gtk2")
set guifont=Monospace\ 14
set guioptions-=T " remove toolbar
set vb t_vb=
elseif has("x11")
elseif has("gui_win32")
end
" General *********************************************************************
set gtl=%t gtt=%F
let g:screenDimensions = { '1920,1080': [ 145, 77 ], '1280,800': [ 207,60 ], 'default' :[50,50] }