LunarVim/nv-settings.lua

22 lines
401 B
Lua
Raw Normal View History

2021-03-26 04:24:05 +01:00
--[[
2021-03-27 06:59:28 +01:00
O is the global options object
2021-03-26 04:24:05 +01:00
2021-03-27 06:59:28 +01:00
Formatters and linters should be
filled in as strings with either
a global executable or a path to
an executable
]]
2021-03-26 04:24:05 +01:00
2021-03-27 09:13:07 +01:00
O.auto_complete = false
2021-03-27 06:59:28 +01:00
O.colorscheme = 'nvcode'
2021-03-27 01:28:08 +01:00
2021-03-27 06:59:28 +01:00
O.python.formatter = 'yapf'
O.python.linter = nil
O.python.autoformat = false
2021-03-27 09:06:14 +01:00
O.python.diagnostics.virtual_text = false
O.python.diagnostics.signs = false
O.python.diagnostics.underline = false
2021-03-27 01:28:08 +01:00