summaryrefslogtreecommitdiff
path: root/ftplugin/kotlin.vim
blob: d001ac147536cb7ee59aeb02523e6945b5ff72a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
setlocal tabstop=4
setlocal softtabstop=4
setlocal shiftwidth=4
setlocal expandtab
setlocal autoindent
setlocal smarttab
setlocal formatoptions=croql

setlocal comments=://
setlocal commentstring=//\ %s

setlocal makeprg=ktlint

augroup KtLint
    autocmd!
    autocmd BufWritePost *.kt silent make! <afile> | silent redraw
    autocmd QuickFixCmdPost [^l]* cwindow
augroup END