fixes enable option descriptions

mkEnableOption already adds the phrase "Whether to enable ..." to the
beginning of the option description, such that the string argument
should only be "thing to be enabled"
This commit is contained in:
Kalle Jepsen 2023-10-21 19:15:36 +02:00
commit a452a0b0e7
22 changed files with 42 additions and 42 deletions

View file

@ -12,12 +12,12 @@ in {
nvimWebDevicons.enable = mkEnableOption "dev icons. Required for certain plugins [nvim-web-devicons].";
scrollBar.enable = mkEnableOption "Enable scrollbar [scrollbar.nvim]";
scrollBar.enable = mkEnableOption "scrollbar [scrollbar.nvim]";
smoothScroll.enable = mkEnableOption "Enable smooth scrolling [cinnamon-nvim]";
smoothScroll.enable = mkEnableOption "smooth scrolling [cinnamon-nvim]";
cellularAutomaton = {
enable = mkEnableOption "Enable cellular automaton [cellular-automaton]";
enable = mkEnableOption "cellular automaton [cellular-automaton]";
mappings = {
makeItRain = mkMappingOption "Make it rain [cellular-automaton]" "<leader>fml";
@ -25,7 +25,7 @@ in {
};
fidget-nvim = {
enable = mkEnableOption "Enable nvim LSP UI element [fidget-nvim]";
enable = mkEnableOption "nvim LSP UI element [fidget-nvim]";
align = {
bottom = mkOption {
@ -59,7 +59,7 @@ in {
};
indentBlankline = {
enable = mkEnableOption "Enable indentation guides [indent-blankline]";
enable = mkEnableOption "indentation guides [indent-blankline]";
listChar = mkOption {
type = types.str;