9 lines
210 B
Lua
9 lines
210 B
Lua
|
require("neodev").setup({
|
||
|
override = function(root_dir, library)
|
||
|
if root_dir:find("/home/moritz/.dotfiles/", 1, true) == 1 then
|
||
|
library.enabled = true
|
||
|
library.plugins = true
|
||
|
end
|
||
|
end,
|
||
|
})
|