2018-05-08 18:55:04 +00:00
|
|
|
" pathogen
|
|
|
|
execute pathogen#infect()
|
|
|
|
|
2016-09-23 23:22:54 +00:00
|
|
|
" auto indent
|
2016-09-23 23:13:08 +00:00
|
|
|
filetype plugin indent on
|
|
|
|
|
2016-09-23 23:22:54 +00:00
|
|
|
" enable syntax highlighting
|
|
|
|
syntax on
|
|
|
|
|
|
|
|
" tabwidth
|
2016-09-23 23:13:08 +00:00
|
|
|
set tabstop=4
|
|
|
|
set shiftwidth=4
|
2016-09-23 23:22:54 +00:00
|
|
|
|
|
|
|
" line numbers
|
2016-09-23 23:13:08 +00:00
|
|
|
set number
|
|
|
|
|
2018-05-08 18:55:04 +00:00
|
|
|
" always enable status line
|
|
|
|
set laststatus=2
|
|
|
|
|
2018-02-15 07:12:42 +00:00
|
|
|
" themes
|
|
|
|
colorscheme elflord
|
|
|
|
|
|
|
|
" gvim layout
|
|
|
|
set guioptions-=r
|
|
|
|
set guioptions-=L
|
|
|
|
set guioptions-=m
|
|
|
|
set guioptions-=T
|
2018-05-08 18:55:04 +00:00
|
|
|
|