diff options
-rw-r--r-- | lua/config.lua | 5 | ||||
-rw-r--r-- | lua/nv-compe/init.lua | 3 | ||||
-rw-r--r-- | lua/nv-globals.lua | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/lua/config.lua b/lua/config.lua index 3bd6952b..ef081199 100644 --- a/lua/config.lua +++ b/lua/config.lua @@ -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 + diff --git a/lua/nv-compe/init.lua b/lua/nv-compe/init.lua index 67e86be8..b94f50d0 100644 --- a/lua/nv-compe/init.lua +++ b/lua/nv-compe/init.lua @@ -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 = " "}, diff --git a/lua/nv-globals.lua b/lua/nv-globals.lua index 8e48892d..ded7d95b 100644 --- a/lua/nv-globals.lua +++ b/lua/nv-globals.lua @@ -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}, |