Setup WSL Host

This commit is contained in:
2025-01-21 04:32:14 +00:00
commit c7bcd25914
8 changed files with 183 additions and 0 deletions

16
nix/users/luca/tmux.nix Executable file
View File

@@ -0,0 +1,16 @@
{ pkgs, ... }:
{
enable = true;
prefix = "C-Space";
mouse = true;
baseIndex = 1;
sensibleOnTop = true;
keyMode = "vi";
plugins = with pkgs; [{ plugin = tmuxPlugins.tokyo-night-tmux; }];
extraConfig = ''
bind -n M-H previous-window
bind -n M-L next-window
'';
escapeTime = 0;
}