feat: add fidget.nvim to visual plugins

This commit is contained in:
NotAShelf 2023-02-28 13:00:38 +03:00
commit db7aa94161
No known key found for this signature in database
GPG key ID: 5B5C8895F28445F1
4 changed files with 40 additions and 0 deletions

View file

@ -45,6 +45,27 @@ in {
default = false;
};
fidget-nvim = {
enable = mkOption {
type = types.bool;
description = "enable nvim LSP UI element [fidget-nvim]";
default = false;
};
align = {
bottom = mkOption {
type = types.bool;
description = "align to bottom";
default = true;
};
right = mkOption {
type = types.bool;
description = "align to right";
default = true;
};
};
};
cursorWordline = {
enable = mkOption {
type = types.bool;