diff options
author | Chris <[email protected]> | 2021-03-27 01:59:28 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-27 01:59:28 -0400 |
commit | 127ff7231a63a75887647c11485338b354617c0b (patch) | |
tree | 81dc75a1dc28534699660af67d5c55bf2cd3bbd4 /lua/nv-globals.lua | |
parent | 56f8d4ccbd2380838207df60cf36e60710235e77 (diff) |
rough user config, not finished
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') + |