config.lua 283 B

1234567891011121314151617
  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