feat(nvim): add direnv.nvim
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 35s

This commit is contained in:
Price Hiller 2024-10-21 15:47:21 -05:00
parent 1ebe3e50b4
commit 6fad02b9ed
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -0,0 +1,13 @@
return {
{
"actionshrimp/direnv.nvim",
lazy = false,
config = function()
local direnv = require("direnv-nvim")
-- TODO: Make this properly restart LSP clients as necessary
direnv.setup({
async = true,
})
end,
},
}