29 lines
352 B
VimL
29 lines
352 B
VimL
" pathogen
|
|
execute pathogen#infect()
|
|
|
|
" auto indent
|
|
filetype plugin indent on
|
|
|
|
" enable syntax highlighting
|
|
syntax on
|
|
|
|
" tabwidth
|
|
set tabstop=4
|
|
set shiftwidth=4
|
|
|
|
" line numbers
|
|
set number
|
|
|
|
" always enable status line
|
|
set laststatus=2
|
|
|
|
" themes
|
|
colorscheme elflord
|
|
|
|
" gvim layout
|
|
set guioptions-=r
|
|
set guioptions-=L
|
|
set guioptions-=m
|
|
set guioptions-=T
|
|
|