blob: 03e6c99fb9020c57a0b43bf24a0ada9c2511c973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|