nvim/after/ftplugin/json.lua
2023-10-28 00:00:00 +07:00

10 lines
181 B
Lua

local o = vim.opt_local
o.autoindent = true
o.conceallevel = 0
o.expandtab = true
o.foldmethod = 'syntax'
o.formatoptions = 'tcq2l'
o.shiftwidth = 2
o.softtabstop = 2
o.tabstop = 4