add image viewing

This commit is contained in:
RingOfStorms (Josh) 2024-07-25 14:24:23 -05:00
parent 1f645e2aa8
commit fbe285ef02
3 changed files with 8 additions and 6 deletions

View file

@ -56,13 +56,15 @@
extraConfig = '' extraConfig = ''
set -g @resurrect-strategy-nvim 'session' set -g @resurrect-strategy-nvim 'session'
set -g @resurrect-capture-pane-contents 'on' set -g @resurrect-capture-pane-contents 'on'
# Hook to save tmux-resurrect state when a pane is closed
set-hook -g pane-died "run-shell 'tmux-resurrect save'"
''; '';
} }
{ {
plugin = continuum; plugin = continuum;
extraConfig = '' extraConfig = ''
set -g @continuum-restore 'on' set -g @continuum-restore 'on'
# set -g @continuum-save-interval '60' # minutes set -g @continuum-save-interval '5' # minutes
''; '';
} }
]; ];

View file

@ -0,0 +1,5 @@
{ settings, pkgs, ... }:
{
home.packages = with pkgs; [ gnome.nautilus qimgv ];
}

View file

@ -1,5 +0,0 @@
{ settings, pkgs, ... }:
{
home.packages = [ pkgs.gnome.nautilus ];
}