added previm plugin
This commit is contained in:
parent
f00d244562
commit
206d0ee852
9
.vimrc
9
.vimrc
|
|
@ -17,6 +17,8 @@ Plugin 'itchyny/lightline.vim'
|
||||||
Plugin 'airblade/vim-gitgutter'
|
Plugin 'airblade/vim-gitgutter'
|
||||||
|
|
||||||
Plugin 'altercation/vim-colors-solarized'
|
Plugin 'altercation/vim-colors-solarized'
|
||||||
|
|
||||||
|
Plugin 'kannokanno/previm'
|
||||||
" All of your Plugins must be added before the following line
|
" All of your Plugins must be added before the following line
|
||||||
call vundle#end() " required
|
call vundle#end() " required
|
||||||
filetype plugin indent on " required
|
filetype plugin indent on " required
|
||||||
|
|
@ -50,12 +52,10 @@ set ruler
|
||||||
set undolevels=1000
|
set undolevels=1000
|
||||||
set backspace=indent,eol,start
|
set backspace=indent,eol,start
|
||||||
set colorcolumn=80
|
set colorcolumn=80
|
||||||
|
|
||||||
" lastline plugin config
|
" lastline plugin config
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
"let g:lightline = {'colorshceme': 'solarized dark'}
|
|
||||||
" gitgutter
|
|
||||||
let g:gitgutter_realtime = 1
|
|
||||||
let g:gitgutter_eager = 1
|
|
||||||
" colorscheme
|
" colorscheme
|
||||||
syntax enable
|
syntax enable
|
||||||
"set background=dark
|
"set background=dark
|
||||||
|
|
@ -65,3 +65,4 @@ highlight colorcolumn ctermbg=grey ctermfg=blue
|
||||||
highlight OverLength ctermbg=red ctermfg=white
|
highlight OverLength ctermbg=red ctermfg=white
|
||||||
match OverLength /\%>80v.\+/
|
match OverLength /\%>80v.\+/
|
||||||
filetype plugin on
|
filetype plugin on
|
||||||
|
nmap ne :NERDTreeToggle<cr>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue