runtime: Add [ft]plugin/shada.vim files that automatically open .shada

This commit is contained in:
ZyX
2015-08-31 21:45:33 +03:00
parent 8d9063bb2a
commit 9037a180de
4 changed files with 495 additions and 30 deletions

View File

@@ -0,0 +1,18 @@
if exists('b:did_ftplugin')
finish
endif
let b:did_ftplugin = 1
function! ShaDaIndent(lnum)
if a:lnum == 1 || getline(a:lnum) =~# '\mwith timestamp.*:$'
return 0
else
return shiftwidth()
endif
endfunction
setlocal expandtab tabstop=2 softtabstop=2 shiftwidth=2
setlocal indentexpr=ShaDaIndent(v:lnum) indentkeys=<:>,o,O
let b:undo_ftplugin = 'setlocal et< ts< sts< sw< indentexpr< indentkeys<'