Added tmux command for man search

This commit is contained in:
2025-08-22 22:19:22 -04:00
parent ac5652f1ca
commit e31d00c7bf
3 changed files with 11 additions and 1 deletions

View File

@@ -13,6 +13,7 @@
./modules/sops.nix ./modules/sops.nix
]; ];
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.trusted-users = [ "root" "th3r00t" ];
networking.hostName = "Titan"; # Define your hostname. networking.hostName = "Titan"; # Define your hostname.
# Bootloader. # Bootloader.
boot = { boot = {

Binary file not shown.

View File

@@ -55,6 +55,7 @@
] ]
) )
) )
pyenv
neovim neovim
zig zig
nodejs nodejs
@@ -193,11 +194,18 @@
# terminal = "xterm-kitty:RGB"; # terminal = "xterm-kitty:RGB";
tmuxinator.enable = true; tmuxinator.enable = true;
extraConfig = '' extraConfig = ''
if-shell "[[ $(hostname) = 'xps13' ]]" {
set-option -as terminal-features 'foot:RGB'
}
if-shell "[[ $(hostname) = 'Titan' ]]" {
set-option -as terminal-features 'xterm-256color:RGB'
set -g default-terminal "tmux-256color"
set -g terminal-overrides ",xterm-256color:RGB"
}
set-option -g update-environment "DISPLAY XAUTHORITY WAYLAND_DISPLAY XDG_RUNTIME_DIR HYPRLAND_INSTANCE_SIGNATURE" set-option -g update-environment "DISPLAY XAUTHORITY WAYLAND_DISPLAY XDG_RUNTIME_DIR HYPRLAND_INSTANCE_SIGNATURE"
set -g focus-events on set -g focus-events on
set -g escape-time 3 set -g escape-time 3
set-option -g status-position top set-option -g status-position top
set-option -as terminal-features 'foot:RGB'
set -g default-terminal 'tmux-256color' set -g default-terminal 'tmux-256color'
bind-key b choose-tree -Z "run-shell 'tmux swap-pane -s %%'" bind-key b choose-tree -Z "run-shell 'tmux swap-pane -s %%'"
# bind C-p display-popup -E -w 60% -h 70% 'tmuxsessions.sh' # bind C-p display-popup -E -w 60% -h 70% 'tmuxsessions.sh'
@@ -207,6 +215,7 @@
# bind C-c display-popup -E -w 50% -h 50% 'nvim +":cd ~/org" ~/org/refile.norg' # bind C-c display-popup -E -w 50% -h 50% 'nvim +":cd ~/org" ~/org/refile.norg'
# bind C-c display-popup -E -w 50% -h 50% 'nvim +"VimwikiIndex" # bind C-c display-popup -E -w 50% -h 50% 'nvim +"VimwikiIndex"
bind C-c display-popup -E -w 60% -h 60% "pytui -n" bind C-c display-popup -E -w 60% -h 60% "pytui -n"
bind C-m display-popup -E -w 60% -h 60% "pytui -m"
# bind C-w display-popup -E -w 40% -h 60% "pytui -D" # bind C-w display-popup -E -w 40% -h 60% "pytui -D"
bind C-o display-popup -E -w 50% -h 50% 'igrep ~/wiki/notes' bind C-o display-popup -E -w 50% -h 50% 'igrep ~/wiki/notes'