feat(nvim): add indentation settings for lua

This commit is contained in:
Bruno Carlin 2023-10-10 16:48:00 +02:00
parent e0e619fa9c
commit 15b579e873
Signed by: bcarlin
GPG key ID: 8E254EA0FFEB9B6D

View file

@ -6,6 +6,7 @@ vim.cmd [[
autocmd FileType html.handlebars setlocal ts=2 sts=2 sw=2 expandtab autocmd FileType html.handlebars setlocal ts=2 sts=2 sw=2 expandtab
autocmd FileType java setlocal tw=80 ts=2 sts=2 sw=2 expandtab autocmd FileType java setlocal tw=80 ts=2 sts=2 sw=2 expandtab
autocmd FileType javascript setlocal ts=2 sts=2 sw=2 expandtab autocmd FileType javascript setlocal ts=2 sts=2 sw=2 expandtab
autocmd FileType lua setlocal tw=80 ts=2 sts=2 sw=2 expandtab
autocmd FileType md setlocal tw=80 ts=2 sts=2 sw=2 expandtab autocmd FileType md setlocal tw=80 ts=2 sts=2 sw=2 expandtab
autocmd FileType rst setlocal tw=80 ts=3 sts=3 sw=3 expandtab autocmd FileType rst setlocal tw=80 ts=3 sts=3 sw=3 expandtab
autocmd FileType sh setlocal tw=80 ts=2 sts=2 sw=2 expandtab autocmd FileType sh setlocal tw=80 ts=2 sts=2 sw=2 expandtab