this repo has no description
0
fork

Configure Feed

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

Tmux fixes

+16 -14
-1
tmux/tmux.conf
··· 1 1 # Colors 2 2 set-option -ga terminal-overrides ",xterm-256color:Tc" 3 - set -g @colors-solarized "light" 4 3 5 4 # Better indexes 6 5 set -g base-index 1
+16 -13
tmux/tmux.nix
··· 1 1 { pkgs }: 2 2 { 3 - enable = true; 4 - prefix = "C-a"; 5 - terminal = "xterm-256color"; 6 - extraConfig = (builtins.readFile ./tmux.conf); 7 - plugins = with pkgs.tmuxPlugins; [ 8 - tmux-colors-solarized 9 - copycat 10 - sensible 11 - tmux-fzf 12 - fzf-tmux-url 13 - sessionist 14 - ]; 15 - } 3 + enable = true; 4 + prefix = "C-a"; 5 + terminal = "xterm-256color"; 6 + extraConfig = (builtins.readFile ./tmux.conf); 7 + plugins = with pkgs.tmuxPlugins; [ 8 + { 9 + plugin = tmux-colors-solarized; 10 + extraConfig = "set -g @colors-solarized 'light'"; 11 + } 12 + copycat 13 + sensible 14 + tmux-fzf 15 + fzf-tmux-url 16 + sessionist 17 + ]; 18 + }