Skip to content

Commit

Permalink
Update (#54)
Browse files Browse the repository at this point in the history
* Flake update.

* Flake update, set backup file extension.

* Flake update.

* Tweak Tmux config.

* Swap tmux h/v.
  • Loading branch information
attilaolah authored May 31, 2024
1 parent f0ef463 commit 3093a38
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
26 changes: 13 additions & 13 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
{
home-manager = {
inherit useGlobalPkgs useUserPackages users;
backupFileExtension = "bkp";
extraSpecialArgs.desktop = true;
};
}
Expand Down
8 changes: 6 additions & 2 deletions home-manager/.config/tmux/tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ bind -n M-S next-window
# Re-bind split window key.
unbind '%'
unbind '"'
bind ';' split-window -h -c "#{pane_current_path}"
bind ',' split-window -v -c "#{pane_current_path}"
# Swap h/v because I'm thinking backwards.
bind 'v' split-window -h -c "#{pane_current_path}"
bind 'h' split-window -v -c "#{pane_current_path}"

# [TAB] through panes.
bind Tab select-pane -t :.+

# Set True Colour terminal override.
set-option -sa terminal-overrides ",xterm*:Tc"
Expand Down

0 comments on commit 3093a38

Please sign in to comment.