From 4af6aa90e62c3493c9df9a5d9659c705875fbcb1 Mon Sep 17 00:00:00 2001 From: Elias Almqvist Date: Mon, 30 Dec 2024 15:23:01 +0100 Subject: [PATCH] tmux --- nix-darwin/home.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/nix-darwin/home.nix b/nix-darwin/home.nix index 419f7bf..4be45eb 100644 --- a/nix-darwin/home.nix +++ b/nix-darwin/home.nix @@ -81,7 +81,7 @@ ffmpeg gnupg jq - tmux + # tmux htop ripgrep sshfs @@ -250,6 +250,17 @@ }; }; + programs.tmux = { + enable = true; + mouse = true; + terminal = "xterm-256color"; + shell = "${pkgs.zsh}/bin/zsh"; + # If you need any tmux config to run before shell startup: + extraConfig = '' + set -g default-command "${pkgs.zsh}/bin/zsh" + ''; + }; + programs.neovim = { enable = true; viAlias = true;