config.lua 313 B

123456789101112131415161718
  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.virtual_text = false