Added fold markers and modeline
This commit is contained in:
parent
48ac4943d3
commit
6fb7b2c174
1 changed files with 7 additions and 2 deletions
|
@ -1,17 +1,20 @@
|
||||||
|
" vim: set foldmethod=marker foldmarker={{{,}}}
|
||||||
|
|
||||||
if filereadable("~/.vimrc.local")
|
if filereadable("~/.vimrc.local")
|
||||||
source ~/.vimrc.local
|
source ~/.vimrc.local
|
||||||
endif
|
endif
|
||||||
|
|
||||||
packadd! termdebug
|
packadd! termdebug
|
||||||
|
|
||||||
" vim-plug installer
|
" vim-plug installer {{{
|
||||||
if empty(glob('~/.vim/autoload/plug.vim'))
|
if empty(glob('~/.vim/autoload/plug.vim'))
|
||||||
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
||||||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||||
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
||||||
endif
|
endif
|
||||||
|
" }}}
|
||||||
|
|
||||||
" vim-plug plugins
|
" vim-plug plugins {{{
|
||||||
call plug#begin('~/.vim/vim-plug')
|
call plug#begin('~/.vim/vim-plug')
|
||||||
|
|
||||||
" deoplete
|
" deoplete
|
||||||
|
@ -42,6 +45,7 @@ Plug 'markonm/traces.vim'
|
||||||
Plug 'christoomey/vim-tmux-navigator'
|
Plug 'christoomey/vim-tmux-navigator'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
" }}}
|
||||||
|
|
||||||
" tabwidth
|
" tabwidth
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
|
@ -117,3 +121,4 @@ set hlsearch
|
||||||
|
|
||||||
" asynrun.vim
|
" asynrun.vim
|
||||||
let g:asyncrun_open = 16
|
let g:asyncrun_open = 16
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue