Compare commits

..

1 Commits

Author SHA1 Message Date
6fad02b9ed
feat(nvim): add direnv.nvim
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 35s
2024-10-21 15:47:21 -05:00
2 changed files with 1 additions and 6 deletions

View File

@ -458,7 +458,6 @@ return {
}, },
{ {
condition = conditions.lsp_attached, condition = conditions.lsp_attached,
update = { "LspAttach", "LspDetach" },
{ {
provider = function() provider = function()
local names = {} local names = {}

View File

@ -161,7 +161,6 @@ return {
{ {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
dependencies = { dependencies = {
"actionshrimp/direnv.nvim", -- This ensures that direnv is loaded first
"williamboman/mason.nvim", "williamboman/mason.nvim",
"Decodetalkers/csharpls-extended-lsp.nvim", "Decodetalkers/csharpls-extended-lsp.nvim",
{ {
@ -303,10 +302,7 @@ return {
end end
local messages = {} local messages = {}
for _, cur_client in ipairs(cur_clients) do for _, cur_client in ipairs(cur_clients) do
local client_name = vim.trim(cur_client.name) table.insert(messages, "- `" .. cur_client.name .. "`")
if client_name ~= "" then
table.insert(messages, "- `" .. cur_client.name .. "`")
end
end end
vim.notify(table.concat(messages, "\n"), vim.log.levels.INFO, { vim.notify(table.concat(messages, "\n"), vim.log.levels.INFO, {