You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
721 B
20 lines
721 B
8 years ago
|
set guioptions=agit " basically, all options, except the scrollbar, menu and toolbar
|
||
13 years ago
|
set columns=116 " number of columns (uses most of my screen, in this case)
|
||
12 years ago
|
set cursorline " highlight the line with the cursor
|
||
|
set colorcolumn=+2 " put a marker at textwidth + 2
|
||
12 years ago
|
set linespace=1 " spread the lines a bit, adding a 1px line above all
|
||
10 years ago
|
set t_vb= " disable the visual bell
|
||
13 years ago
|
|
||
12 years ago
|
if has('mac')
|
||
|
set gfn=monofur:h15 " My screen size sucks, mkay?
|
||
|
set lines=63 " number of lines, based on my screen size and font
|
||
|
else
|
||
10 years ago
|
" set gfn=monofur\ for\ Powerline\ 12
|
||
11 years ago
|
set lines=54
|
||
10 years ago
|
" let g:Powerline_symbols = 'fancy'
|
||
12 years ago
|
endif
|
||
10 years ago
|
|
||
|
if filereadable(expand("~/.vim/local.gvimrc"))
|
||
|
source ~/.vim/local.gvimrc
|
||
|
endif
|