config.lua 400 B

123456789101112131415161718192021
  1. --[[
  2. O is the global options object
  3. Formatters and linters should be
  4. filled in as strings with either
  5. a global executable or a path to
  6. an executable
  7. ]]
  8. O.auto_complete = true
  9. O.colorscheme = 'nvcode'
  10. O.python.formatter = 'yapf'
  11. O.python.linter = nil
  12. O.python.autoformat = false
  13. O.python.diagnostics.virtual_text = false
  14. O.python.diagnostics.signs = false
  15. O.python.diagnostics.underline = false