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