mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-21 19:52:52 +00:00
add tmux
This commit is contained in:
parent
cfc2c82985
commit
53f20d35d8
1 changed files with 20 additions and 0 deletions
20
home.nix
20
home.nix
|
@ -149,6 +149,26 @@
|
||||||
";
|
";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.tmux = {
|
||||||
|
enable = true;
|
||||||
|
mouse = true;
|
||||||
|
plugins = with pkgs.tmuxPlugins; [
|
||||||
|
better-mouse-mode
|
||||||
|
#dracula
|
||||||
|
#gruvbox
|
||||||
|
#nord
|
||||||
|
#onedark-theme
|
||||||
|
#power-theme
|
||||||
|
resurrect
|
||||||
|
#tmux-colors-solarized
|
||||||
|
tmux-fzf
|
||||||
|
];
|
||||||
|
extraConfig = ''
|
||||||
|
set-option -g mouse on
|
||||||
|
set -g default-terminal "screen-256color"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
programs.nixvim = import ./nixvim.nix pkgs;
|
programs.nixvim = import ./nixvim.nix pkgs;
|
||||||
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
|
|
Loading…
Reference in a new issue