From 43c29f650dd8267331d8c4b4dce1185c7c0ea9aa Mon Sep 17 00:00:00 2001 From: Fiscal Velvet Poet Date: Mon, 18 Jul 2022 15:34:09 +1000 Subject: [PATCH] tmux: formatted with alejendra --- profiles/tmux.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/profiles/tmux.nix b/profiles/tmux.nix index ee9e320..8a7a80a 100644 --- a/profiles/tmux.nix +++ b/profiles/tmux.nix @@ -1,11 +1,12 @@ # Common configuration for Tmux users - -{ config, pkgs, ... }: - { - + config, + pkgs, + ... +}: { programs = { - tmux = { # Terminal multiplexer required by byobu + tmux = { + # Terminal multiplexer required by byobu enable = true; aggressiveResize = true; clock24 = true; @@ -28,10 +29,10 @@ bind-key -n Home send Escape "OH" bind-key -n End send Escape "OF" ''; - keyMode = "vi"; + keyMode = "vi"; newSession = true; - shortcut = "a"; - terminal = "screen-256color"; + shortcut = "a"; + terminal = "screen-256color"; }; }; @@ -43,5 +44,4 @@ tmuxPlugins.tmux-fzf tmuxPlugins.yank ]; - }