mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-12-07 09:35:37 -08:00
my config yay
This commit is contained in:
15
lua/custom/plugins/neodev.lua
Normal file
15
lua/custom/plugins/neodev.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
-- `neodev` configures Lua LSP for your Neovim config, runtime and plugins
|
||||
-- used for completion, annotations and signatures of Neovim apis
|
||||
return {
|
||||
{
|
||||
'folke/neodev.nvim',
|
||||
opts = {
|
||||
override = function(root_dir, library)
|
||||
if root_dir:find '.config/nvim' then
|
||||
library.enabled = true
|
||||
library.plugins = true
|
||||
end
|
||||
end,
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user