|
@@ -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')
|
|
|
|
+
|