diff options
-rw-r--r-- | lua/nv-globals.lua | 16 | ||||
-rw-r--r-- | nv-settings.lua | 2 |
2 files changed, 14 insertions, 4 deletions
diff --git a/lua/nv-globals.lua b/lua/nv-globals.lua index b4e548a9..873a8994 100644 --- a/lua/nv-globals.lua +++ b/lua/nv-globals.lua @@ -4,6 +4,7 @@ O = { colorscheme = 'nvcode', python = { linter = '', + -- @usage can be 'yapf' formatter = '', autoformat = false, isort = false, @@ -11,26 +12,33 @@ O = { }, lua = { - - -- @usage can be lua-format + -- @usage can be 'lua-format' formatter = '', - autoformat = false, diagnostics = {virtual_text = true, signs = true, underline = true} }, sh = { + -- @usage can be 'shellcheck' linter = '', + -- @usage can be 'shfmt' formatter = '', autoformat = false, diagnostics = {virtual_text = true, signs = true, underline = true} }, tsserver = { + -- @usage can be 'eslint' linter = '', + -- @usage can be 'prettier' formatter = '', autoformat = false, diagnostics = {virtual_text = true, signs = true, underline = true} }, - json = {formatter = '', autoformat = false, diagnostics = {virtual_text = true, signs = true, underline = true}} + json = { + -- @usage can be 'prettier' + formatter = '', + autoformat = false, + diagnostics = {virtual_text = true, signs = true, underline = true} + } -- css = {formatter = '', autoformat = false, virtual_text = true}, -- json = {formatter = '', autoformat = false, virtual_text = true} } diff --git a/nv-settings.lua b/nv-settings.lua index a77e25c0..9d8c2ded 100644 --- a/nv-settings.lua +++ b/nv-settings.lua @@ -34,3 +34,5 @@ O.tsserver.autoformat = true -- json O.json.autoformat = true + +-- create custom autocommand field (This would be easy with lua) |