refactor(common): move some bash stuff to relevant modules
This commit is contained in:
parent
52f2d8711f
commit
1fe3920c50
5 changed files with 44 additions and 40 deletions
common/home/tmux
|
@ -1,5 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
programs = {
|
||||
# Make sure we have color support
|
||||
bash.shellAliases.tmux = "tmux -2";
|
||||
|
||||
tmux = {
|
||||
enable = true;
|
||||
mouse = true;
|
||||
|
@ -8,9 +11,7 @@
|
|||
newSession = true;
|
||||
historyLimit = 30000;
|
||||
|
||||
plugins = with pkgs.tmuxPlugins; [
|
||||
dracula
|
||||
];
|
||||
plugins = with pkgs.tmuxPlugins; [dracula];
|
||||
|
||||
extraConfig = ''
|
||||
bind-key -n Home send Escape "OH"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue