forked from whiteinge/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gvimrc
30 lines (22 loc) · 745 Bytes
/
.gvimrc
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
" Ok-ish gvimrc 'cause sometimes assholes make you use GUIs
" Author: Seth House <[email protected]>
color desert
hi LineNr guibg=#222222
hi TabLine gui=none
set guioptions=acgit "go: A minimal (console-like) set of GUI options
if has ("macunix") " pretty anti-aliased font
au GUIEnter * winpos 0 40
set nomacatsui anti enc=utf-8 gfn=Monaco:h11
" Maximize the window (stupid workaround, don't think there's a better way)
set lines=999
set columns=999
endif
if has ("win32")
" Maximize the window
au GUIEnter * simalt ~x
set guifont=fixed,vt100:h10,Lucida_Console:h8
set shell=C:/cygwin/bin/zsh
set shellcmdflag=--login\ -c
set shellxquote=\"
endif
let g:Powerline_symbols = 'fancy'