Files
cnix/modules/home/programs/neovim/plugins/fidget.nix
2025-08-29 15:25:40 +02:00

21 lines
377 B
Nix

{ pkgs, ... }:
{
programs.neovim.plugins = with pkgs.vimPlugins; [
{
plugin = fidget-nvim;
type = "lua";
config =
# lua
''
require("fidget").setup({
progress = {
display = {
progress_icon = { pattern = "dots", period = 1 },
},
},
})
'';
}
];
}