337 current 2024-04-14 16:15:15 24.05.20240414.bc59f72 6.8.4-zen1 *

This commit is contained in:
zackartz 2024-04-14 16:15:24 -04:00
parent 4347118e02
commit 058c28de5a
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
4 changed files with 83 additions and 55 deletions

26
modules/shell/tmux.nix Normal file
View file

@ -0,0 +1,26 @@
{pkgs, ...}: let
tmux-super-fingers =
pkgs.tmuxPlugins.mkTmuxPlugin
{
pluginName = "tmux-super-fingers";
version = "unstable-2023-01-06";
src = pkgs.fetchFromGitHub {
owner = "artemave";
repo = "tmux_super_fingers";
rev = "2c12044984124e74e21a5a87d00f844083e4bdf7";
sha256 = "sha256-cPZCV8xk9QpU49/7H8iGhQYK6JwWjviL29eWabuqruc=";
};
};
in {
programs.tmux = {
enable = true;
shell = "${pkgs.zsh}/bin/zsh";
historyLimit = 100000;
plugins = with pkgs; [
tmuxPlugins.sensible
];
extraConfig = ''
'';
};
}