diff options
| author | Mike Vink <59492084+ivi-vink@users.noreply.github.com> | 2025-01-16 22:22:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-16 22:22:34 +0100 |
| commit | 8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch) | |
| tree | c5059edcbebd9644290cad7c653c49a36d593021 /modules/programs/vim.nix | |
| parent | 6bd39d420578aacf7c0bab7de3e7027b952115ae (diff) | |
| parent | bd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff) | |
Diffstat (limited to 'modules/programs/vim.nix')
| -rw-r--r-- | modules/programs/vim.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/programs/vim.nix b/modules/programs/vim.nix index d51d0ac..345532e 100644 --- a/modules/programs/vim.nix +++ b/modules/programs/vim.nix @@ -18,14 +18,14 @@ in programs.vim.enable = mkOption { type = types.bool; default = false; - description = lib.mdDoc "Whether to configure vim."; + description = "Whether to configure vim."; }; programs.vim.enableSensible = mkOption { type = types.bool; default = false; example = true; - description = lib.mdDoc "Enable sensible configuration options for vim."; + description = "Enable sensible configuration options for vim."; }; programs.vim.extraKnownPlugins = mkOption { @@ -46,14 +46,14 @@ in }; } ''; - description = lib.mdDoc "Custom plugin declarations to add to VAM's knownPlugins."; + description = "Custom plugin declarations to add to VAM's knownPlugins."; }; programs.vim.plugins = mkOption { type = types.listOf types.attrs; default = []; example = [ { names = [ "surround" "vim-nix" ]; } ]; - description = lib.mdDoc "VAM plugin dictionaries to use for vim_configurable."; + description = "VAM plugin dictionaries to use for vim_configurable."; }; programs.vim.package = mkOption { @@ -70,7 +70,7 @@ in programs.vim.vimConfig = mkOption { type = types.lines; default = ""; - description = lib.mdDoc "Extra vimrcConfig to use for vim_configurable."; + description = "Extra vimrcConfig to use for vim_configurable."; }; }; |
