Add support for lazygit, set colours and allow access to aichat.

This commit is contained in:
2025-10-21 00:39:15 +02:00
parent e21c121709
commit b1a6654d1c
2 changed files with 33 additions and 0 deletions

View File

@@ -1,6 +1,17 @@
# TMUX configuration for using tmux as an IDE
# This file contains a minimal configuration and diffent layout.
# enable the default terminal colours
set -g default-terminal "${TERM}"
set -ag terminal-overrides ",${TERM}:Tc"
# set the background colours for the status bar.
set -g status-bg "#544788"
set -g status-fg white
# set matching colours to for the active and inactive pane borders.
set -g pane-border-style "fg=#544788"
set -g pane-active-border-style "fg=#8066b3"
# enable the mouse mode
set -g mouse on
@@ -12,6 +23,9 @@ bind C-v run "tmux set-buffer $(xclip -o sel clip); tmux paste-buffer"
# Use lazygit for version control.
bind-key g display-popup -d "#{pane_current_path}" -x C -y C -w 80% -h 80% -E 'lazygit'
# open an ai chat window to the left of the main screen
bind-key a split-window -bh -p 20 -c "#{pane_current_path}" 'aichat-ng'
# Configure the plugin manager
# List of plugins
set -g @plugin 'tmux-plugins/tpm'