File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ local function load_plugins()
11
11
" wbthomason/packer.nvim" ,
12
12
" nvim-tree/nvim-tree.lua" ,
13
13
" nvim-tree/nvim-web-devicons" ,
14
+
15
+ -- UNCOMMENT for diagnostics issues
16
+ -- "neovim/nvim-lspconfig",
17
+
14
18
-- ADD PLUGINS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
15
19
},
16
20
config = {
@@ -30,8 +34,16 @@ vim.cmd [[autocmd User PackerComplete ++once echo "Ready!" | lua setup()]]
30
34
vim .opt .termguicolors = true
31
35
vim .opt .cursorline = true
32
36
33
- -- MODIFY NVIM-TREE SETTINGS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
34
37
_G .setup = function ()
35
- require (" nvim-tree" ).setup {}
36
- end
38
+ -- MODIFY NVIM-TREE SETTINGS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
39
+ require (" nvim-tree" ).setup {
40
+ diagnostics = {
41
+ -- ENABLE for diagnostics issues
42
+ enable = false ,
43
+ },
44
+ }
37
45
46
+ -- SETUP your language server e.g. lua-language-server, see
47
+ -- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
48
+ -- require("lspconfig").lua_ls.setup {}
49
+ end
You can’t perform that action at this time.
0 commit comments