Add dart language support, closes #93

This commit is contained in:
Adam Stankiewicz
2015-12-06 11:38:02 +01:00
parent 938a2f1667
commit 5658b62b7a
6 changed files with 160 additions and 0 deletions

13
indent/dart.vim Normal file
View File

@@ -0,0 +1,13 @@
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dart') == -1
if exists('b:did_indent')
finish
endif
let b:did_indent = 1
setlocal cindent
setlocal cinoptions+=j1,J1
let b:undo_indent = 'setl cin< cino<'
endif