blob: fa59ec47fe10cecc12b5b701f92a38826e2043d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, pkgs, ... }:
{
programs.tmux.enable = true;
programs.tmux.plugins = with pkgs.tmuxPlugins; [
sensible
vim-tmux-navigator
tmux-which-key
tmux-powerline
tmux-fzf
gruvbox
yank
];
}
|