dotfiles/vim/vimrc

38 lines
601 B
VimL
Raw Normal View History

" pathogen
execute pathogen#infect()
" auto indent
2016-09-23 23:13:08 +00:00
filetype plugin indent on
" enable syntax highlighting
syntax on
" tabwidth
2016-09-23 23:13:08 +00:00
set tabstop=4
set shiftwidth=4
" line numbers
2016-09-23 23:13:08 +00:00
set number
" always enable status line
set laststatus=2
2018-10-29 19:12:46 +00:00
" youcomleteme config
let g:ycm_autoclose_preview_window_after_insertion = 1
let g:ycm_autoclose_preview_window_after_completion = 1
nmap <F12> :YcmCompleter GoTo<CR>
" vim-airline config
let g:airline#extensions#whitespace#mixed_indent_algo = 2
" themes
colorscheme elflord
" gvim layout
set guioptions-=r
set guioptions-=L
set guioptions-=m
set guioptions-=T