summary refs log tree commit diff
path: root/nixos/modules/programs/vim.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/programs/vim.nix')
-rw-r--r--nixos/modules/programs/vim.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/programs/vim.nix b/nixos/modules/programs/vim.nix
index 1695bc99473..15983e371f0 100644
--- a/nixos/modules/programs/vim.nix
+++ b/nixos/modules/programs/vim.nix
@@ -9,7 +9,7 @@ in {
     defaultEditor = mkOption {
       type = types.bool;
       default = false;
-      description = ''
+      description = lib.mdDoc ''
         When enabled, installs vim and configures vim to be the default editor
         using the EDITOR environment variable.
       '';
@@ -20,7 +20,7 @@ in {
       default = pkgs.vim;
       defaultText = literalExpression "pkgs.vim";
       example = literalExpression "pkgs.vimHugeX";
-      description = ''
+      description = lib.mdDoc ''
         vim package to use.
       '';
     };