dotfiles/nvim/lua/plugins/lspconfig.lua

27 lines
531 B
Lua
Raw Normal View History

2024-02-23 09:38:57 +00:00
return {
{
"neovim/nvim-lspconfig",
dependencies = {
"folke/neodev.nvim",
},
config = function()
require "my.lsp"
end,
},
{
"j-hui/fidget.nvim",
tag = "v1.4.0",
2024-03-12 09:06:02 +00:00
opts = {
progress = {
display = {
progress_ttl = 2,
},
},
notification = {
override_vim_notify = true,
},
},
2024-02-23 09:38:57 +00:00
event = "LspAttach"
},
}