this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

More tmux cleanup

+5 -8
-7
tmux/tmux.conf
··· 1 - # Colors 2 - set-option -ga terminal-overrides ",xterm-256color:Tc" 3 - 4 - # Better indexes 5 - set -g base-index 1 6 - setw -g pane-base-index 1 7 - 8 1 # Pane movement 9 2 bind-key S command-prompt -p "send pane to:" "join-pane -t '%%'" 10 3 bind h select-pane -L
+5 -1
tmux/tmux.nix
··· 2 2 { 3 3 enable = true; 4 4 prefix = "C-a"; 5 + baseIndex = 1; 5 6 terminal = "xterm-256color"; 6 7 extraConfig = (builtins.readFile ./tmux.conf); 7 8 plugins = with pkgs.tmuxPlugins; [ 8 9 { 9 10 plugin = tmux-colors-solarized; 10 - extraConfig = "set -g @colors-solarized 'light'"; 11 + extraConfig = '' 12 + set-option -ga terminal-overrides ",xterm-256color:Tc" 13 + set -g @colors-solarized 'light' 14 + ''; 11 15 } 12 16 copycat 13 17 sensible