mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
added tmux to config
This commit is contained in:
parent
1222576f77
commit
5472309263
2 changed files with 17 additions and 0 deletions
16
modules/tmux.nix
Normal file
16
modules/tmux.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -24,6 +24,7 @@ in
|
||||||
../modules/git.nix
|
../modules/git.nix
|
||||||
../modules/neovim.nix
|
../modules/neovim.nix
|
||||||
../modules/rofi.nix
|
../modules/rofi.nix
|
||||||
|
../modules/tmux.nix
|
||||||
../modules/wezterm.nix
|
../modules/wezterm.nix
|
||||||
../modules/xdg.nix
|
../modules/xdg.nix
|
||||||
../modules/yazi.nix
|
../modules/yazi.nix
|
||||||
|
|
Loading…
Reference in a new issue