From b0087d961ade944783ccb427668631cbcab8d9ed Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Mon, 7 Oct 2024 05:28:36 +0100 Subject: [PATCH] Update alacritty and tmux configs --- .config/alacritty/alacritty.toml | 12 ++++++++++++ .tmux.conf | 8 ++++---- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index bd39edf..67d13d0 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -2,3 +2,15 @@ program = "/usr/bin/tmux" [window] startup_mode = "Maximized" +[font] + [font.normal] + family = "0xProto Nerd Font" + style = "Regular" + + [font.bold] + family = "0xProto Nerd Font" + style = "Bold" + + [font.italic] + family = "0xProto Nerd Font" + style = "Italic" diff --git a/.tmux.conf b/.tmux.conf index 902dfb8..0cbca78 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -10,7 +10,7 @@ unbind % # map reload config bind r source-file ~/.tmux.conf # remap switch panes -bind -n M-Left select-pane -L -bind -n M-Right select-pane -R -bind -n M-Up select-pane -U -bind -n M-Down select-pane -D +bind -n M-h select-pane -L +bind -n M-l select-pane -R +bind -n M-k select-pane -U +bind -n M-j select-pane -D