neovim-flake/modules/ui/modes/modes.nix
2023-06-06 01:49:38 +03:00

13 lines
300 B
Nix

{lib, ...}:
with lib;
with builtins; {
options.vim.ui.modes-nvim = {
enable = mkEnableOption "modes.nvim's prismatic line decorations";
setCursorline = mkOption {
type = types.bool;
description = "Set a colored cursorline on current line";
default = false;
};
};
}