flake update.

This commit is contained in:
Gabe Venberg 2024-04-22 12:31:00 -05:00
parent e548369cae
commit 6853d5296f
3 changed files with 43 additions and 33 deletions

View file

@ -6,10 +6,12 @@
programs.nixvim = {
plugins.toggleterm = {
enable = true;
direction = "horizontal";
insertMappings = false;
openMapping = ''<c-\>'';
terminalMappings = false;
settings = {
direction = "horizontal";
insert_mappings = false;
terminal_mappings = false;
open_mapping = ''[[<c-\>]]'';
};
};
keymaps = [
{

View file

@ -148,6 +148,8 @@ keybinds clear-defaults=true{
bind "Alt g" { SwitchToMode "Locked"; }
bind "Alt q" { Quit; }
bind "Alt n" { NewPane; }
bind "Alt i" { MoveTab "Left"; }
bind "Alt o" { MoveTab "Right"; }
bind "Alt _" { NewPane "Down"; }
bind "Alt |" { NewPane "Right"; }
bind "Alt h" "Alt Left" { MoveFocusOrTab "Left"; }
@ -186,11 +188,17 @@ keybinds clear-defaults=true{
}
plugins {
tab-bar { path "tab-bar"; }
status-bar { path "status-bar"; }
strider { path "strider"; }
compact-bar { path "compact-bar"; }
session-manager { path "session-manager"; }
tab-bar location="zellij:tab-bar"
status-bar location="zellij:status-bar"
strider location="zellij:strider"
compact-bar location="zellij:compact-bar"
session-manager location="zellij:session-manager"
welcome-screen location="zellij:session-manager" {
welcome_screen true
}
filepicker location="zellij:strider" {
cwd "/"
}
}
// Choose what to do when zellij receives SIGTERM, SIGINT, SIGQUIT or SIGHUP