set nocompatible set guioptions-=T " no toolbar set guioptions-=m " no menubar set guioptions-=r " right scrollbar set guioptions-=L " left scrollbar set guifont=Hack\ 12 set background=dark let g:solarized_termtrans=1 " put " https://raw.github.com/altercation/vim-colors-solarized/master/colors/solarized.vim " and " https://raw.githubusercontent.com/sheerun/vim-wombat-scheme/master/colors/wombat.vim " in ~/.vim/colors/ colorscheme wombat " slightly modified (no colorcolumn) set cursorline set laststatus=2 " always show status line syntax on filetype plugin indent on set encoding=utf-8 set visualbell set ruler set incsearch set ignorecase set smartcase set hlsearch if has("gui_running") set columns=100 set lines=50 end set wrap set tabstop=4 set shiftwidth=4 set softtabstop=4 set expandtab set autochdir