summaryrefslogtreecommitdiff
path: root/modules/programs/tmux.nix
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-14 23:02:32 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-19 04:05:50 +0200
commitdef1e23be848848400d1d097d4f044e3c401f9dd (patch)
tree7a69686dea36e304c788531fda90bc3edeee86fd /modules/programs/tmux.nix
parent99b3f9a1f5d2604d542f367d38001dfa40eea7b9 (diff)
treewide: remove lib.mdDoc
Diffstat (limited to 'modules/programs/tmux.nix')
-rw-r--r--modules/programs/tmux.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/programs/tmux.nix b/modules/programs/tmux.nix
index 7278479..ae6fcbf 100644
--- a/modules/programs/tmux.nix
+++ b/modules/programs/tmux.nix
@@ -46,47 +46,47 @@ in
programs.tmux.enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc "Whether to configure tmux.";
+ description = "Whether to configure tmux.";
};
programs.tmux.enableSensible = mkOption {
type = types.bool;
default = false;
example = true;
- description = lib.mdDoc "Enable sensible configuration options for tmux.";
+ description = "Enable sensible configuration options for tmux.";
};
programs.tmux.enableMouse = mkOption {
type = types.bool;
default = false;
example = true;
- description = lib.mdDoc "Enable mouse support for tmux.";
+ description = "Enable mouse support for tmux.";
};
programs.tmux.enableFzf = mkOption {
type = types.bool;
default = false;
example = true;
- description = lib.mdDoc "Enable fzf keybindings for selecting tmux sessions and panes.";
+ description = "Enable fzf keybindings for selecting tmux sessions and panes.";
};
programs.tmux.enableVim = mkOption {
type = types.bool;
default = false;
example = true;
- description = lib.mdDoc "Enable vim style keybindings for copy mode, and navigation of tmux panes.";
+ description = "Enable vim style keybindings for copy mode, and navigation of tmux panes.";
};
programs.tmux.iTerm2 = mkOption {
type = types.bool;
default = false;
example = true;
- description = lib.mdDoc "Cater to iTerm2 and its tmux integration, as appropriate.";
+ description = "Cater to iTerm2 and its tmux integration, as appropriate.";
};
programs.tmux.defaultCommand = mkOption {
type = types.either types.str types.package;
- description = lib.mdDoc "The default command to use for tmux panes.";
+ description = "The default command to use for tmux panes.";
};
programs.tmux.tmuxOptions = mkOption {
@@ -98,7 +98,7 @@ in
programs.tmux.extraConfig = mkOption {
type = types.lines;
default = "";
- description = lib.mdDoc "Extra configuration to add to {file}`tmux.conf`.";
+ description = "Extra configuration to add to {file}`tmux.conf`.";
};
};