Evie Litherland-Smith
ea722bb23d
Start checking for executable before registering lsp server Add missing dependencies for direnv, indent_blankline and nvim_neorg Add standard .cspell.json, make now links it to home directory
11 lines
305 B
Lua
11 lines
305 B
Lua
return {
|
|
"https://github.com/direnv/direnv.vim.git",
|
|
cond = function() return vim.fn.executable("direnv") == 1 and not vim.g.vscode end,
|
|
name = "direnv.vim",
|
|
event = { "DirChangedPre" },
|
|
config = function()
|
|
vim.g.direnv_auto = 1
|
|
vim.g.direnv_silent_load = 1
|
|
end,
|
|
}
|