Skip to content

Commit

Permalink
fix neodev
Browse files Browse the repository at this point in the history
  • Loading branch information
mosheavni committed Nov 24, 2023
1 parent 3da6401 commit ae609bc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion .config/nvim/lua/plugins/lsp/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,15 @@ local M = {
end,
},
'b0o/SchemaStore.nvim',
{ 'folke/neodev.nvim', opts = {} },
{
'folke/neodev.nvim',
opts = {
override = function(_, library)
library.enabled = true
library.plugins = true
end,
},
},
{
'someone-stole-my-name/yaml-companion.nvim',
config = function()
Expand Down
12 changes: 6 additions & 6 deletions .config/nvim/lua/plugins/lsp/servers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ local M = {
disable = { 'undefined-global' },
globals = { 'vim' },
},
workspace = {
-- Make the server aware of Neovim runtime files
library = {},
checkThirdParty = false,
},
telemetry = { enable = false },
-- workspace = {
-- -- Make the server aware of Neovim runtime files
-- library = {},
-- checkThirdParty = false,
-- },
-- telemetry = { enable = false },
},
},
},
Expand Down

0 comments on commit ae609bc

Please sign in to comment.