diff --git a/.config/nvim/.github/README.md b/.config/nvim/.github/README.md index 078961f7..5546e56c 100644 --- a/.config/nvim/.github/README.md +++ b/.config/nvim/.github/README.md @@ -304,7 +304,7 @@
📜 LSP -- [simrat39/symbols-outline.nvim](https://dotfyle.com/plugins/simrat39/symbols-outline.nvim) +- [j-hui/fidget.nvim](https://dotfyle.com/plugins/j-hui/fidget.nvim) - [antosha417/nvim-lsp-file-operations](https://github.com/antosha417/nvim-lsp-file-operations) - [Wansmer/symbol-usage.nvim](https://dotfyle.com/plugins/Wansmer/symbol-usage.nvim) - [aznhe21/actions-preview.nvim](https://dotfyle.com/plugins/aznhe21/actions-preview.nvim) diff --git a/.config/nvim/lua/plugins/extras/ui/fidget.lua b/.config/nvim/lua/plugins/extras/ui/fidget.lua new file mode 100644 index 00000000..1067445d --- /dev/null +++ b/.config/nvim/lua/plugins/extras/ui/fidget.lua @@ -0,0 +1,17 @@ +return { + { + "j-hui/fidget.nvim", + event = "LspAttach", + opts = {}, + }, + { + "folke/noice.nvim", + opts = { + lsp = { + progress = { + enabled = false, + }, + }, + }, + }, +}