Add a couple more binds, fix typo in tui/default

This commit is contained in:
Evie Litherland-Smith 2023-07-10 20:38:42 +01:00
parent 1ba2ce2b72
commit 64f149532e
2 changed files with 7 additions and 1 deletions

View file

@ -159,6 +159,12 @@ in {
bind = SUPER, S, moveworkspacetomonitor, 7 current
bind = SUPER, S, workspace, 7
bind = SUPER SHIFT, S, movetoworkspace, 7
bind = SUPER, 8, moveworkspacetomonitor, 8 current
bind = SUPER, 8, workspace, 8
bind = SUPER SHIFT, 8, movetoworkspace, 8
bind = SUPER, 9, moveworkspacetomonitor, 9 current
bind = SUPER, 9, workspace, 9
bind = SUPER SHIFT, 9, movetoworkspace, 9
bind = SUPER, period, workspace, m+1
bind = SUPER SHIFT, period, movetoworkspace, r+1

View file

@ -1,4 +1,4 @@
{pkgs, ...}: {
imports = [./neovim ./lazygit.nix];
imports = [./neovim.nix ./lazygit.nix];
home.packages = [pkgs.ranger];
}