mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-28 03:30:05 +02:00
new feature custom lsp progress
This commit is contained in:
parent
7f02b38730
commit
06f0332a8f
8 changed files with 71 additions and 102 deletions
|
@ -10,7 +10,13 @@ return {
|
|||
event = "BufWinEnter",
|
||||
config = function()
|
||||
vim.opt.lazyredraw = false
|
||||
require("noice").setup()
|
||||
require("noice").setup({
|
||||
lsp = {
|
||||
progress = {
|
||||
enabled = false,
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
|
|
6
lua/custom/ui.lua
Normal file
6
lua/custom/ui.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
local m = {}
|
||||
-- 0 disable progress
|
||||
-- 1 lualine lsp progress
|
||||
-- 2 fidget progress
|
||||
m.progress = 1
|
||||
return m
|
Loading…
Add table
Add a link
Reference in a new issue