diff --git a/modules/home/programs/nixvim/plugins/default.nix b/modules/home/programs/nixvim/plugins/default.nix index c990d42..f80e2d7 100755 --- a/modules/home/programs/nixvim/plugins/default.nix +++ b/modules/home/programs/nixvim/plugins/default.nix @@ -9,6 +9,7 @@ ./barbar.nix ./cmp.nix ./lsp.nix + ./fidget.nix ./lualine.nix ./plugins.nix ./nvim-tree.nix diff --git a/modules/home/programs/nixvim/plugins/fidget.nix b/modules/home/programs/nixvim/plugins/fidget.nix new file mode 100644 index 0000000..f4f2783 --- /dev/null +++ b/modules/home/programs/nixvim/plugins/fidget.nix @@ -0,0 +1,11 @@ +{ + programs.nixvim.plugins.fidget = { + enable = true; + notification = { + overrideVimNotify = true; + window = { + border = "rounded"; + }; + }; + }; +} diff --git a/modules/home/programs/nixvim/plugins/plugins.nix b/modules/home/programs/nixvim/plugins/plugins.nix index 9fd5686..86bf70c 100755 --- a/modules/home/programs/nixvim/plugins/plugins.nix +++ b/modules/home/programs/nixvim/plugins/plugins.nix @@ -9,6 +9,7 @@ neoscroll.enable = true; endwise.enable = true; firenvim.enable = true; + helpview.enable = true; floaterm.enable = true; fugitive.enable = true; gitsigns.enable = true;