add new plugins
This commit is contained in:
parent
d6ad2d0ef7
commit
4bce08bc22
13 changed files with 479 additions and 322 deletions
16
lua/custom/plugins/fidget.lua
Normal file
16
lua/custom/plugins/fidget.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
{
|
||||
"j-hui/fidget.nvim",
|
||||
event = { "BufEnter" },
|
||||
config = function()
|
||||
-- Turn on LSP, formatting, and linting status and progress information
|
||||
require("fidget").setup({
|
||||
progress = {
|
||||
display = {
|
||||
progress_icon = { "dots_negative" }
|
||||
}
|
||||
}
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue