summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua')
-rw-r--r--.config/nvim/lua/plugins/cmp.lua2
-rw-r--r--.config/nvim/lua/plugins/lsp.lua14
2 files changed, 11 insertions, 5 deletions
diff --git a/.config/nvim/lua/plugins/cmp.lua b/.config/nvim/lua/plugins/cmp.lua
index 1bc209f..6a93009 100644
--- a/.config/nvim/lua/plugins/cmp.lua
+++ b/.config/nvim/lua/plugins/cmp.lua
@@ -143,7 +143,7 @@ return {
143 }, 143 },
144 { 144 {
145 "L3MON4D3/LuaSnip", 145 "L3MON4D3/LuaSnip",
146 event = "InsertEnter", 146 version = "v2.*",
147 dependencies = { 147 dependencies = {
148 "honza/vim-snippets", 148 "honza/vim-snippets",
149 }, 149 },
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 },