1234567891011121314151617181920212223242526272829303132333435363738 |
- --[[
- 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
- ]] -- general
- O.auto_complete = true
- O.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_path
- O.python.formatter = 'yapf'
- -- O.python.linter = 'flake8'
- O.python.isort = true
- O.python.autoformat = true
- O.python.diagnostics.virtual_text = true
- O.python.diagnostics.signs = true
- O.python.diagnostics.underline = true
- -- lua
- O.lua.formatter = 'lua-format'
- -- O.lua.formatter = 'lua-format'
- O.lua.autoformat = true
- -- javascript
- O.tsserver.formatter = 'prettier'
- O.tsserver.linter = nil
- O.tsserver.autoformat = true
- -- json
- O.json.autoformat = true
- -- create custom autocommand field (This would be easy with lua)
|