From d4406915984f94ecd8655dbb4a0a40542319a09f Mon Sep 17 00:00:00 2001 From: Ivan Dimitrov Date: Mon, 22 Apr 2024 19:47:31 +0300 Subject: [PATCH] tmux config --- modules/home/programs/tmux/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/modules/home/programs/tmux/default.nix b/modules/home/programs/tmux/default.nix index e0357eb..43559db 100644 --- a/modules/home/programs/tmux/default.nix +++ b/modules/home/programs/tmux/default.nix @@ -2,12 +2,11 @@ programs.tmux = { enable = true; clock24 = true; + baseIndex = 1; + escapeTime = 0; + keyMode = "vi"; + shell = "\${SHELL}"; + terminal = "screen-256color"; plugins = with pkgs.tmuxPlugins; [ tilish catppuccin ]; - extraConfig = '' - set -g default-command "''${SHELL}" - set -g default-terminal "xterm-256color" - set -g base-index 1 - set -s escape-time 0 - ''; }; }