diff options
Diffstat (limited to '.config/nvim/lua/plugins/lsp.lua')
-rw-r--r-- | .config/nvim/lua/plugins/lsp.lua | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.config/nvim/lua/plugins/lsp.lua b/.config/nvim/lua/plugins/lsp.lua index 91cdebd..d55158e 100644 --- a/.config/nvim/lua/plugins/lsp.lua +++ b/.config/nvim/lua/plugins/lsp.lua | |||
@@ -188,10 +188,16 @@ return { | |||
188 | "j-hui/fidget.nvim", | 188 | "j-hui/fidget.nvim", |
189 | event = "VeryLazy", | 189 | event = "VeryLazy", |
190 | opts = { | 190 | opts = { |
191 | text = { | 191 | progress = { |
192 | spinner = "triangle", | 192 | suppress_on_insert = true, |
193 | commenced = "started", -- message shown when task starts | 193 | |
194 | completed = "done", -- message shown when task completes | 194 | display = { |
195 | render_limit = 4, | ||
196 | progress_icon = { | ||
197 | pattern = "triangle", | ||
198 | |||
199 | }, | ||
200 | }, | ||
195 | }, | 201 | }, |
196 | }, | 202 | }, |
197 | }, | 203 | }, |