diff options
Diffstat (limited to 'lua/nv-globals.lua')
-rw-r--r-- | lua/nv-globals.lua | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/lua/nv-globals.lua b/lua/nv-globals.lua index 7fa859a0..b5bdffc9 100644 --- a/lua/nv-globals.lua +++ b/lua/nv-globals.lua @@ -1,11 +1,17 @@ -local nv_options = {} +O = { -DATA_PATH = vim.fn.stdpath('data') -CACHE_PATH = vim.fn.stdpath('cache') - -python = { -linter = nil, + auto_complete = true, + colorscheme = 'nvcode', + python = {linter = nil, formatter = nil, autoformat = false}, + javascript = {linter = nil, formatter = nil, autoformat = false}, + javascriptreact = {linter = nil, formatter = nil, autoformat = false}, + lua = {formatter = nil, autoformat = false}, + bash = {linter = nil, formatter = nil, autoformat = false}, + css = {formatter = nil, autoformat = false}, + json = {formatter = nil, autoformat = false}, } -return nv_options +DATA_PATH = vim.fn.stdpath('data') +CACHE_PATH = vim.fn.stdpath('cache') + |