Added folds
This commit is contained in:
parent
5635b5e434
commit
a73147283c
1 changed files with 6 additions and 5 deletions
11
vim/vimrc
11
vim/vimrc
|
@ -1,10 +1,8 @@
|
||||||
" vim: set foldmethod=marker foldmarker={{{,}}}
|
" vimrc.local {{{
|
||||||
|
|
||||||
if filereadable("~/.vimrc.local")
|
if filereadable("~/.vimrc.local")
|
||||||
source ~/.vimrc.local
|
source ~/.vimrc.local
|
||||||
endif
|
endif
|
||||||
|
" }}}
|
||||||
packadd! termdebug
|
|
||||||
|
|
||||||
" vim-plug installer {{{
|
" vim-plug installer {{{
|
||||||
if empty(glob('~/.vim/autoload/plug.vim'))
|
if empty(glob('~/.vim/autoload/plug.vim'))
|
||||||
|
@ -47,6 +45,8 @@ Plug 'christoomey/vim-tmux-navigator'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
|
packadd! termdebug
|
||||||
|
|
||||||
" tabwidth
|
" tabwidth
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
set shiftwidth=4
|
set shiftwidth=4
|
||||||
|
@ -63,12 +63,13 @@ set laststatus=2
|
||||||
" faster saving
|
" faster saving
|
||||||
set nofsync
|
set nofsync
|
||||||
|
|
||||||
" autoread/checktime timer
|
" autoread/checktime timer {{{
|
||||||
set autoread
|
set autoread
|
||||||
function CheckTime(timer)
|
function CheckTime(timer)
|
||||||
checktime
|
checktime
|
||||||
endfunction
|
endfunction
|
||||||
let timerChecktime = timer_start(4000, 'CheckTime', {'repeat': -1})
|
let timerChecktime = timer_start(4000, 'CheckTime', {'repeat': -1})
|
||||||
|
" }}}
|
||||||
|
|
||||||
" ctags config
|
" ctags config
|
||||||
set tags=./tags;
|
set tags=./tags;
|
||||||
|
|
Loading…
Reference in a new issue