diff options
author | Chris <[email protected]> | 2021-03-27 04:13:07 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-27 04:13:07 -0400 |
commit | 42638f60619e965f66386ae6cd656951ac4a8fac (patch) | |
tree | d777d65d7f148ce184dc0b1c87b1b4fff11fb36c /nv-settings.lua | |
parent | eb1077811077e3f2f3834ddbb355a984ced395f8 (diff) |
nv-settings.lua
Diffstat (limited to 'nv-settings.lua')
-rw-r--r-- | nv-settings.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/nv-settings.lua b/nv-settings.lua new file mode 100644 index 00000000..03e6c99f --- /dev/null +++ b/nv-settings.lua @@ -0,0 +1,21 @@ +--[[ +O is the global options object + +Formatters and linters should be +filled in as strings with either +a global executable or a path to +an executable +]] + + +O.auto_complete = false +O.colorscheme = 'nvcode' + +O.python.formatter = 'yapf' +O.python.linter = nil +O.python.autoformat = false +O.python.diagnostics.virtual_text = false +O.python.diagnostics.signs = false +O.python.diagnostics.underline = false + + |