You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/lua/custom/plugins/fidget.lua

17 lines
338 B
Lua

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,
},
}