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;