added tmux to config

This commit is contained in:
Nickiel12 2023-10-14 10:17:53 -07:00
parent 1222576f77
commit 5472309263
2 changed files with 17 additions and 0 deletions

16
modules/tmux.nix Normal file
View file

@ -0,0 +1,16 @@
{ config, pkgs, lib, ... }:
let
in
{
programs.tmux = {
enable = true;
terminal = "xterm-256color";
# Change this for faster resizing, but less precise
resizeAmount = 5;
keyMode = "vi";
mouse = true;
shell = "${pkgs.zsh}/bin/zsh";
};
}

View file

@ -24,6 +24,7 @@ in
../modules/git.nix
../modules/neovim.nix
../modules/rofi.nix
../modules/tmux.nix
../modules/wezterm.nix
../modules/xdg.nix
../modules/yazi.nix