From b0271820148ea0ad576aae3d5a642f45e498bda8 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 13 May 2023 10:39:44 +0100 Subject: [PATCH] fix(tmux): fix colours --- home-manager/modules/tmux.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/home-manager/modules/tmux.nix b/home-manager/modules/tmux.nix index decd7ae..6b57441 100644 --- a/home-manager/modules/tmux.nix +++ b/home-manager/modules/tmux.nix @@ -15,8 +15,7 @@ bind-key -n C-l select-pane -R set-option -g status-keys "emacs" - set-option -ga terminal-overrides ",*256col*:Tc" - set-option -g default-terminal "screen-256color" + set-option -ga terminal-overrides ",*256col*:alacritty" bind-key h split-window -v -c "#{pane_current_path}" bind-key v split-window -h -c "#{pane_current_path}"