Oliver Davies
af9edbfe1a
This makes them more modular and configurable by allowing features to be enabled per-host. Squashed commit of the following: commit e9896d6166125de7aa26ddc63dac3adb196e8c23 Author: Oliver Davies <oliver@oliverdavies.dev> Date: Mon Nov 25 23:06:23 2024 +0000 Use mkMerge To ensure features isn't overridden and values aren't lost accidentally commit c9c8ff5d059f08ade3aee9bb4e25bd51d4817a6d Author: Oliver Davies <oliver@oliverdavies.dev> Date: Mon Nov 25 22:56:38 2024 +0000 Move NixOS module imports commit 4a85bbac9dfa8f06825f6b1fee45ef27befa16d3 Author: Oliver Davies <oliver@oliverdavies.dev> Date: Mon Nov 25 22:39:54 2024 +0000 Move Home Manager module imports commit 6d7a1b0aac68ccc8649fa2d8cd6e8b17ecebb4f0 Author: Oliver Davies <oliver@oliverdavies.dev> Date: Mon Nov 25 21:15:54 2024 +0000 Add host-specific Home Manager configurations commit b32da2fbf7498c9684d8289be0f02800994e9110 Author: Oliver Davies <oliver@oliverdavies.dev> Date: Mon Nov 25 18:00:00 2024 +0000 Start to parameterise Home Manager modules commit e80e89b415849cc4c6051a07b70587ac98724e2c Author: Oliver Davies <oliver@oliverdavies.dev> Date: Mon Nov 25 18:00:00 2024 +0000 Rename wsl commands to home-manager commit 6d82ed73da3c104fb25117fb843c3f3b5d833180 Author: Oliver Davies <oliver@oliverdavies.dev> Date: Mon Nov 25 18:00:00 2024 +0000 Refactor NixOS Home Manager configuration commit cc5cbf5ac1a407a456d7258dd65a78ba3128a88f Author: Oliver Davies <oliver@oliverdavies.dev> Date: Mon Nov 25 08:05:00 2024 +0000 Refactor WSL Home Manager configuration commit deaf664a0997871b6f2bb0a8f97d638a91cb10bc Author: Oliver Davies <oliver@oliverdavies.dev> Date: Mon Nov 25 08:04:00 2024 +0000 Refactor lemp11 configuration
88 lines
2.5 KiB
Nix
88 lines
2.5 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
inherit (pkgs) tmuxPlugins;
|
|
in
|
|
{
|
|
options.features.cli.tmux.enable = lib.mkEnableOption "Enable tmux";
|
|
|
|
config = lib.mkIf config.features.cli.tmux.enable {
|
|
programs.tmux = {
|
|
enable = true;
|
|
|
|
terminal = "tmux-256color";
|
|
|
|
extraConfig = ''
|
|
set-option -g status-keys "vi"
|
|
set-option -sa terminal-features "''${TERM}:RGB"
|
|
|
|
bind -n S-Left resize-pane -L 2
|
|
bind -n S-Right resize-pane -R 2
|
|
bind -n S-Down resize-pane -D 1
|
|
bind -n S-Up resize-pane -U 1
|
|
|
|
bind -n C-Left resize-pane -L 10
|
|
bind -n C-Right resize-pane -R 10
|
|
bind -n C-Down resize-pane -D 5
|
|
bind -n C-Up resize-pane -U 5
|
|
|
|
# Status line customisation
|
|
set-option -g status-left ""
|
|
set-option -g status-right " #{session_name}"
|
|
set-option -g status-right-length 100
|
|
set-option -g status-style "fg=#7C7D83 bg=default"
|
|
set-option -g window-status-activity-style none
|
|
set-option -g window-status-current-style "fg=#E9E9EA"
|
|
|
|
bind c new-window -c "#{pane_current_path}"
|
|
|
|
set -g base-index 1
|
|
set -g pane-base-index 1
|
|
set -g renumber-windows on
|
|
|
|
# Break a pane into a new window.
|
|
bind-key b break-pane -d
|
|
bind-key J command-prompt -p "join pane from: " "join-pane -h -s '%%'"
|
|
|
|
bind-key C-j choose-tree
|
|
|
|
set-window-option -g mode-keys vi
|
|
bind -T copy-mode-vi v send-keys -X begin-selection
|
|
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
|
|
|
|
bind C-j split-window -v "tmux list-sessions | sed -E 's/:.*$//' | grep -v \"^$(tmux display-message -p '#S')\$\" | fzf --reverse | xargs tmux switch-client -t"
|
|
|
|
bind-key K run-shell 'tmux switch-client -n \; kill-session -t "$(tmux display-message -p "#S")" || tmux kill-session'
|
|
|
|
# Allow clearing screen with ctrl-l by using <prefix> C-l
|
|
bind C-l send-keys "C-l"
|
|
bind C-k send-keys "C-k"
|
|
|
|
# Enable mouse support.
|
|
setw -g mouse on
|
|
|
|
# Remove delay when switching Vim modes.
|
|
set -sg escape-time 0
|
|
|
|
set-option -g pane-active-border-style "fg=#1f2335"
|
|
set-option -g pane-border-style "fg=#1f2335"
|
|
|
|
bind-key -r f run-shell "tmux new-window t"
|
|
|
|
|
|
if-shell "[ -f ~/.tmux.conf.local ]" 'source ~/.tmux.conf.local'
|
|
'';
|
|
|
|
plugins = [
|
|
tmuxPlugins.vim-tmux-navigator
|
|
tmuxPlugins.yank
|
|
];
|
|
};
|
|
};
|
|
}
|