| 1234567891011121314151617181920212223242526272829303132333435363738 | --[[O is the global options objectFormatters and linters should befilled in as strings with eithera global executable or a path toan executable]] -- generalO.auto_complete = trueO.colorscheme = 'nvcode'O.auto_close_tree = 0-- python-- add things like O.python.formatter.yapf.exec_path-- add things like O.python.linter.flake8.exec_path-- add things like O.python.formatter.isort.exec_pathO.python.formatter = 'yapf'O.python.linter = 'flake8'O.python.isort = trueO.python.autoformat = trueO.python.diagnostics.virtual_text = trueO.python.diagnostics.signs = trueO.python.diagnostics.underline = true-- luaO.lua.formatter = 'lua-format'-- O.lua.formatter = 'lua-format'O.lua.autoformat = true-- javascriptO.tsserver.formatter = 'prettier'O.tsserver.linter = nilO.tsserver.autoformat = true-- jsonO.json.autoformat = true-- create custom autocommand field (This would be easy with lua)
 |