nvim/lua/plugins/direnv.lua
Evie Litherland-Smith ea722bb23d lspconfig update and cspell config file
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
2023-06-12 18:59:08 +01:00

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,
}