public
Description: My Rails based Vim config. Includes: rails.vim, NERD_tree, snippetsEmu, specky, supertab, fuzzyfinder_textmate and more
Homepage:
Clone URL: git://github.com/goomerko/vim-rails.config.git
vim-rails.config / gvimrc
100644 14 lines (11 sloc) 0.245 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set guioptions-=T
colorscheme vividchalk
 
"Size and Window Position
set lines=40
set columns=120
:winpos 150 0
 
" Load custom configuration
let my_home = expand("$HOME/")
if filereadable(my_home . '.gvimrc.local')
source ~/.gvimrc.local
endif