mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 10:48:35 +02:00
docs: fix grammar, spelling, and text for enable
options
This commit is contained in:
parent
7014569cbf
commit
3fd743fe80
23 changed files with 24 additions and 24 deletions
|
@ -10,7 +10,7 @@ with lib; let
|
|||
in {
|
||||
options = {
|
||||
plugins.comment-nvim = {
|
||||
enable = mkEnableOption "Enable comment-nvim";
|
||||
enable = mkEnableOption "comment-nvim";
|
||||
|
||||
package = helpers.mkPackageOption "comment-nvim" pkgs.vimPlugins.comment-nvim;
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ with lib; let
|
|||
in {
|
||||
options = {
|
||||
plugins.easyescape = {
|
||||
enable = mkEnableOption "Enable easyescape";
|
||||
enable = mkEnableOption "easyescape";
|
||||
|
||||
package = helpers.mkPackageOption "easyescape" pkgs.vimPlugins.vim-easyescape;
|
||||
};
|
||||
|
|
|
@ -12,7 +12,7 @@ in {
|
|||
plugins.hardtime =
|
||||
helpers.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "Enable hardtime.";
|
||||
enable = mkEnableOption "hardtime";
|
||||
|
||||
package = helpers.mkPackageOption "hardtime" pkgs.vimPlugins.hardtime-nvim;
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ in {
|
|||
plugins.presence-nvim =
|
||||
helpers.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "Enable presence-nvim.";
|
||||
enable = mkEnableOption "presence-nvim";
|
||||
package = helpers.mkPackageOption "presence-nvim" pkgs.vimPlugins.presence-nvim;
|
||||
|
||||
# General options.
|
||||
|
|
|
@ -9,7 +9,7 @@ with lib; let
|
|||
helpers = import ../helpers.nix {inherit lib;};
|
||||
in {
|
||||
options.plugins.tmux-navigator = {
|
||||
enable = mkEnableOption "Enable Tmux-Navigator (see https://github.com/christoomey/vim-tmux-navigator for tmux installation instruction)";
|
||||
enable = mkEnableOption "Tmux-Navigator (see https://github.com/christoomey/vim-tmux-navigator for tmux installation instruction)";
|
||||
|
||||
package = helpers.mkPackageOption "tmux-navigator" pkgs.vimPlugins.tmux-navigator;
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ in {
|
|||
plugins.todo-comments =
|
||||
helpers.extraOptionsOptions
|
||||
// {
|
||||
enable = mkEnableOption "Enable todo-comments.";
|
||||
enable = mkEnableOption "todo-comments";
|
||||
|
||||
package =
|
||||
helpers.mkPackageOption
|
||||
|
|
|
@ -10,7 +10,7 @@ with lib; let
|
|||
in {
|
||||
options = {
|
||||
plugins.undotree = {
|
||||
enable = mkEnableOption "Enable undotree";
|
||||
enable = mkEnableOption "undotree";
|
||||
|
||||
package = helpers.mkPackageOption "undotree" pkgs.vimPlugins.undotree;
|
||||
|
||||
|
|
|
@ -8,12 +8,12 @@ with lib; let
|
|||
helpers = import ../helpers.nix args;
|
||||
in {
|
||||
options.plugins.vim-matchup = {
|
||||
enable = mkEnableOption "Enable vim-matchup";
|
||||
enable = mkEnableOption "vim-matchup";
|
||||
|
||||
package = helpers.mkPackageOption "vim-matchup" pkgs.vimPlugins.vim-matchup;
|
||||
|
||||
treesitterIntegration = {
|
||||
enable = mkEnableOption "Enable treesitter integration";
|
||||
enable = mkEnableOption "treesitter integration";
|
||||
disable =
|
||||
helpers.defaultNullOpts.mkNullable (types.listOf types.str) "[]"
|
||||
"Languages for each to disable this module";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue