aboutsummaryrefslogtreecommitdiff
path: root/tmux.nix
blob: f9ed2490921627a8f53d5e4d140ca0a0ee968b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:
# let unstable = import <nixos-unstable> { config.allowUnfree = true; };
{
  programs.tmux.enable = true;
  programs.tmux.plugins = with pkgs.tmuxPlugins; [
    sensible
    vim-tmux-navigator
    tmux-which-key
    tmux-powerline
    tmux-fzf
    gruvbox
    yank
  ];
}