update options for python

This commit is contained in:
Chris 2021-03-27 04:06:14 -04:00
parent e6e7eafdaf
commit eb10778110
3 changed files with 7 additions and 3 deletions

View file

@ -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

View file

@ -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 = "  "},

View file

@ -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},