aboutsummaryrefslogtreecommitdiff
path: root/after/ftplugin/lua.vim
blob: a840aaeed485eaf7c5954d16fe6bc7171c6fe6e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
" Disable inserting comment leader after hitting o or O or <Enter>
set formatoptions-=o
set formatoptions-=r

set tabstop=2       " number of visual spaces per TAB
set softtabstop=2   " number of spaces in tab when editing
set shiftwidth=2    " number of spaces to use for autoindent
set expandtab       " expand tab to spaces so that tabs are spaces

nnoremap <silent> <F9> :luafile %<CR>

" For delimitMate
let b:delimitMate_matchpairs = "(:),[:],{:}"