nvim/after/ftplugin/json.lua

10 lines
181 B
Lua
Raw Normal View History

2023-10-27 19:00:00 +02:00
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