Skip to content

Commit

Permalink
plugins: clean up module descriptions
Browse files Browse the repository at this point in the history
Only for the `enable` option though.
  • Loading branch information
foo-dogsquared authored and GaetanLepage committed Jan 26, 2024
1 parent 56b1082 commit 6b0f03e
Show file tree
Hide file tree
Showing 10 changed files with 77 additions and 82 deletions.
1 change: 0 additions & 1 deletion plugins/completion/nvim-cmp/cmp-helpers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ in
mkVimPlugin {inherit lib config pkgs;} {
inherit name;
extraPlugins = extraPlugins ++ (lists.optional useDefaultPackage pkgs.vimPlugins.${name});
description = "Enable ${name}";
};

pluginAndSourceNames = {
Expand Down
2 changes: 1 addition & 1 deletion plugins/git/fugitive.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ in
with lib;
mkVimPlugin attrs {
name = "fugitive";
description = "Enable vim-fugitive";
description = "vim-fugitive";
package = pkgs.vimPlugins.vim-fugitive;
extraPackages = [pkgs.git];

Expand Down
2 changes: 1 addition & 1 deletion plugins/languages/nix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ in
with lib;
mkVimPlugin attrs {
name = "nix";
description = "Enable nix";
description = "vim-nix";
package = pkgs.vimPlugins.vim-nix;

# Possibly add option to disable Treesitter highlighting if this is installed
Expand Down
2 changes: 1 addition & 1 deletion plugins/languages/zig.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ in
with lib;
mkVimPlugin attrs {
name = "zig";
description = "Enable zig";
description = "zig.vim";
package = pkgs.vimPlugins.zig-vim;
globalPrefix = "zig_";

Expand Down
Loading

0 comments on commit 6b0f03e

Please sign in to comment.