feat(nvim):add tab config for json files

This commit is contained in:
Bruno Carlin 2025-02-11 15:23:05 +01:00
parent a66bb5d698
commit e688de9762

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 json setlocal ts=2 sts=2 sw=2 expandtab
autocmd FileType lua setlocal tw=80 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