mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-05 18:44:52 +02:00
update options for python
This commit is contained in:
parent
e6e7eafdaf
commit
eb10778110
3 changed files with 7 additions and 3 deletions
|
@ -14,5 +14,8 @@ O.colorscheme = 'nvcode'
|
|||
O.python.formatter = 'yapf'
|
||||
O.python.linter = nil
|
||||
O.python.autoformat = false
|
||||
O.python.virtual_text = false
|
||||
O.python.diagnostics.virtual_text = false
|
||||
O.python.diagnostics.signs = false
|
||||
O.python.diagnostics.underline = false
|
||||
|
||||
|
||||
|
|
|
@ -20,7 +20,8 @@ require'compe'.setup {
|
|||
calc = {kind = " "},
|
||||
vsnip = {kind = " "},
|
||||
nvim_lsp = {kind = " "},
|
||||
nvim_lua = {kind = " "},
|
||||
-- nvim_lua = {kind = " "},
|
||||
nvim_lua = false,
|
||||
spell = {kind = " "},
|
||||
tags = false,
|
||||
-- snippets_nvim = {kind = " "},
|
||||
|
|
|
@ -6,7 +6,7 @@ O = {
|
|||
linter = '',
|
||||
formatter = '',
|
||||
autoformat = false,
|
||||
diagnostics = {virtual_text = false, signs = false, underline = false}
|
||||
diagnostics = {virtual_text = true, signs = true, underline = true}
|
||||
},
|
||||
javascript = {linter = '', formatter = '', autoformat = false, virtual_text = true},
|
||||
javascriptreact = {linter = '', formatter = '', autoformat = false, virtual_text = true},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue