From f819e30b03dffcf9e74af4b8552e4a8ab8f54c58 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Fri, 29 Sep 2023 14:22:24 -0400 Subject: major reorganizing to seperate modules --- programs/tmux.nix | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 programs/tmux.nix (limited to 'programs/tmux.nix') diff --git a/programs/tmux.nix b/programs/tmux.nix deleted file mode 100644 index 6673b5d..0000000 --- a/programs/tmux.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ pkgs, ... }: -{ - programs.tmux = { - enable = true; - terminal = "tmux-256color"; - historyLimit = 10000; - plugins = with pkgs.tmuxPlugins; - [ - catppuccin - vim-tmux-navigator - sensible - yank - ]; - shell = "${pkgs.zsh}/bin/zsh"; - extraConfig = '' -set-option -sa terminal-overrides ",xterm*:Tc" -set -g mouse on - -unbind C-b -set -g prefix C-Space -bind C-Space send-prefix - -bind -n M-H previous-window -bind -n M-L next-window - -set -g base-index 1 -set -g pane-base-index 1 -set-window-option -g pane-base-index 1 -set-option -g renumber-windows on - -bind-key -T copy-mode-vi v send-keys -X begin-selection -bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle -bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel - -bind '"' split-window -v -c ''${pane_current_path}" -bind % split-window -h -c ''${pane_current_path}" - ''; - }; -} -- cgit v1.2.1