-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgvimrc
25 lines (20 loc) · 800 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
" Vim graphical configuration.
set guifont=Monaco:h18 " Font family and font size.
set antialias " MacVim: smooth fonts.
set encoding=utf-8 " Use UTF-8 everywhere.
set guioptions-=T " Hide toolbar.
set guioptions-=L
set guioptions-=r " Hide scrollbars
"set background=light " Background.
set lines=40 columns=125 " Window dimensions.
set fuoptions=maxvert,maxhorz
map <leader>f :set invfullscreen<CR>
let g:rubytest_cmd_feature = "cucumber --no-color %p"
let g:rubytest_cmd_story = "cucumber --no-color %p -n '%c'"
if has("gui_macvim")
macmenu &File.New\ Tab key=<nop>
map <D-t> <Plug>PeepOpen
set transparency=7
set background=dark
colorscheme neverland2 " Set theme
endif