From 127ff7231a63a75887647c11485338b354617c0b Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 27 Mar 2021 01:59:28 -0400 Subject: rough user config, not finished --- lua/nv-globals.lua | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'lua/nv-globals.lua') 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') + -- cgit v1.2.3