Extract 'fold' config
parent
ad20848d86
commit
1b62acfc80
|
@ -0,0 +1,24 @@
|
||||||
|
" Folds {{{
|
||||||
|
set foldmethod=marker
|
||||||
|
|
||||||
|
augroup filetype_vim
|
||||||
|
autocmd!
|
||||||
|
autocmd FileType vim setlocal foldmethod=marker
|
||||||
|
augroup END
|
||||||
|
|
||||||
|
augroup filetype_python
|
||||||
|
autocmd!
|
||||||
|
autocmd FileType python setlocal foldmethod=indent
|
||||||
|
augroup END
|
||||||
|
|
||||||
|
augroup filetype_sh
|
||||||
|
autocmd!
|
||||||
|
autocmd FileType sh setlocal foldmethod=marker
|
||||||
|
augroup END
|
||||||
|
|
||||||
|
augroup filetype_snippets
|
||||||
|
autocmd!
|
||||||
|
autocmd FileType snippets setlocal foldmethod=marker
|
||||||
|
augroup END
|
||||||
|
|
||||||
|
" }}}
|
23
.vimrc
23
.vimrc
|
@ -30,29 +30,6 @@ set spellsuggest+=5 " Limit spell suggestions
|
||||||
set wildignore+=*/node_modules/*,*/tmp/*,*.so,*.swp,*.zip
|
set wildignore+=*/node_modules/*,*/tmp/*,*.so,*.swp,*.zip
|
||||||
set thesaurus+=~/.vim/thesaurus/mthesaur.txt
|
set thesaurus+=~/.vim/thesaurus/mthesaur.txt
|
||||||
|
|
||||||
" Folds {{{
|
|
||||||
|
|
||||||
" Insert date
|
|
||||||
fu! Today()
|
|
||||||
:put =strftime('%d %b %Y')
|
|
||||||
endfu
|
|
||||||
set foldmethod=marker
|
|
||||||
|
|
||||||
augroup filetype_vim
|
|
||||||
autocmd!
|
|
||||||
autocmd FileType vim setlocal foldmethod=marker
|
|
||||||
augroup END
|
|
||||||
|
|
||||||
augroup filetype_python
|
|
||||||
autocmd!
|
|
||||||
autocmd FileType python setlocal foldmethod=indent
|
|
||||||
augroup END
|
|
||||||
|
|
||||||
augroup filetype_sh
|
|
||||||
autocmd!
|
|
||||||
autocmd FileType sh setlocal foldmethod=marker
|
|
||||||
augroup END
|
|
||||||
|
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
" Mappings {{{
|
" Mappings {{{
|
||||||
|
|
Loading…
Reference in New Issue