diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2024-03-25 01:49:22 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-25 01:49:22 +0000 |
| commit | 59d11e6f2bfc071150ec869afc2d5c24e81d55f4 (patch) | |
| tree | 1b0b5f6f601a998238d33d9dea1005d422135eda | |
| parent | f6e380473ec413776147bb310ba17673ee5e96a1 (diff) | |
tmux
| -rw-r--r-- | configuration.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index bfa2332..020e0ff 100644 --- a/configuration.nix +++ b/configuration.nix @@ -127,6 +127,18 @@ # browser programs.firefox.enable = true; + # tmux + programs.tmux = { + enable = true; + extraConfig = '' + set -g prefix C-a + bind-key l select-pane -L + bind-key h select-pane -R + bind-key k select-pane -U + bind-key j select-pane -D + ''; + }; + # fonts fonts.packages = with pkgs; [ (nerdfonts.override { |
