aidsmaxxing
This commit is contained in:
parent
ff8ff81a4e
commit
fafb1bb009
31 changed files with 847 additions and 377 deletions
25
modules/home-manager/cli/tmux.nix
Normal file
25
modules/home-manager/cli/tmux.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
#shortcut = "a";
|
||||
#prefix = "C-a";
|
||||
extraConfig = ''
|
||||
# https://old.reddit.com/r/tmux/comments/mesrci/tmux_2_doesnt_seem_to_use_256_colors/
|
||||
#set -g status-bg colour99
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
set -g @rose_pine_variant 'main'
|
||||
set -g @plugin 'rose-pine/tmux'
|
||||
|
||||
# easy-to-remember split pane commands
|
||||
bind | split-window -h -c "#{pane_current_path}"
|
||||
bind - split-window -v -c "#{pane_current_path}"
|
||||
bind c new-window -c "#{pane_current_path}"
|
||||
set -g @rose_pine_host 'on'
|
||||
set -g @rose_pine_hostname_short 'on'
|
||||
|
||||
set -g @rose_pine_user 'on'
|
||||
set -g @rose_pine_directory 'on'
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue