| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | --[[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 = 'lunar'O.auto_close_tree = 0O.wrap_lines = false-- if you don't want all the parsers change this to a table of the ones you wantO.treesitter.ensure_installed = "all"O.treesitter.ignore_install = {"haskell"}O.treesitter.highlight.enabled = trueO.clang.diagnostics.virtual_text = falseO.clang.diagnostics.signs = falseO.clang.diagnostics.underline = false-- 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-- lua-- TODO look into styluaO.lua.formatter = 'lua-format'-- O.lua.formatter = 'lua-format'O.lua.autoformat = false-- 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)
 |