Compare commits
No commits in common. "63ac881eeabf5a4c62bd796bac97152cd4fb1ab6" and "0b3ff156885362b9560454896e3baa4a9ad1f4c6" have entirely different histories.
63ac881eea
...
0b3ff15688
3 changed files with 21 additions and 48 deletions
|
@ -91,23 +91,6 @@ in
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
# Support bluetooth.
|
|
||||||
hardware.bluetooth = {
|
|
||||||
enable = true;
|
|
||||||
powerOnBoot = false;
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
General = {
|
|
||||||
|
|
||||||
# Support A2DP.
|
|
||||||
Enable = "Source,Sink,Media,Socket";
|
|
||||||
|
|
||||||
# Enable experimental featurees, like reading device battery levels.
|
|
||||||
Experimental = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Hardware config.
|
# Hardware config.
|
||||||
|
|
|
@ -6,12 +6,6 @@ keybinds clear-defaults=true {
|
||||||
locked {
|
locked {
|
||||||
bind "`" { SwitchToMode "normal"; }
|
bind "`" { SwitchToMode "normal"; }
|
||||||
}
|
}
|
||||||
normal {
|
|
||||||
bind "`" {
|
|
||||||
WriteChars "`";
|
|
||||||
SwitchToMode "locked";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pane {
|
pane {
|
||||||
bind "left" { MoveFocus "left"; }
|
bind "left" { MoveFocus "left"; }
|
||||||
bind "down" { MoveFocus "down"; }
|
bind "down" { MoveFocus "down"; }
|
||||||
|
@ -166,6 +160,10 @@ keybinds clear-defaults=true {
|
||||||
bind "Alt o" { MoveTab "right"; }
|
bind "Alt o" { MoveTab "right"; }
|
||||||
}
|
}
|
||||||
shared_except "locked" "renametab" "renamepane" {
|
shared_except "locked" "renametab" "renamepane" {
|
||||||
|
bind "`" {
|
||||||
|
WriteChars "`";
|
||||||
|
SwitchToMode "locked";
|
||||||
|
}
|
||||||
bind "Ctrl q" { Quit; }
|
bind "Ctrl q" { Quit; }
|
||||||
}
|
}
|
||||||
shared_except "locked" "entersearch" {
|
shared_except "locked" "entersearch" {
|
||||||
|
@ -188,14 +186,6 @@ keybinds clear-defaults=true {
|
||||||
}
|
}
|
||||||
shared_among "normal" "resize" "tab" "scroll" "prompt" "tmux" {
|
shared_among "normal" "resize" "tab" "scroll" "prompt" "tmux" {
|
||||||
bind "p" { SwitchToMode "pane"; }
|
bind "p" { SwitchToMode "pane"; }
|
||||||
bind "/" {
|
|
||||||
LaunchOrFocusPlugin "file:~/.config/zellij/plugins/zellij_forgot.wasm" {
|
|
||||||
floating true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
shared_except "normal" "locked" {
|
|
||||||
bind "`" { SwitchToMode "locked"; }
|
|
||||||
}
|
}
|
||||||
shared_except "locked" "resize" "pane" "tab" "entersearch" "renametab" "renamepane" {
|
shared_except "locked" "resize" "pane" "tab" "entersearch" "renametab" "renamepane" {
|
||||||
bind "r" { SwitchToMode "resize"; }
|
bind "r" { SwitchToMode "resize"; }
|
||||||
|
@ -254,47 +244,47 @@ plugins {
|
||||||
|
|
||||||
// Plugins to load in the background when a new session starts
|
// Plugins to load in the background when a new session starts
|
||||||
load_plugins {}
|
load_plugins {}
|
||||||
|
|
||||||
// Choose the theme that is specified in the themes section.
|
// Choose the theme that is specified in the themes section.
|
||||||
// Default: default
|
// Default: default
|
||||||
//
|
//
|
||||||
theme "solarized-dark"
|
theme "solarized-dark"
|
||||||
|
|
||||||
// Require a leader key before we run any commands.
|
// Require a leader key before we run any commands.
|
||||||
default_mode "locked"
|
default_mode "locked"
|
||||||
|
|
||||||
// Uncomment this when we're used enough to the keybinds. :)
|
// Uncomment this when we're used enough to the keybinds. :)
|
||||||
// default_layout "compact"
|
// default_layout "compact"
|
||||||
|
|
||||||
// The folder in which Zellij will look for layouts
|
// The folder in which Zellij will look for layouts
|
||||||
// (Requires restart)
|
// (Requires restart)
|
||||||
//
|
//
|
||||||
// layout_dir "/tmp"
|
// layout_dir "/tmp"
|
||||||
|
|
||||||
// The folder in which Zellij will look for themes
|
// The folder in which Zellij will look for themes
|
||||||
// (Requires restart)
|
// (Requires restart)
|
||||||
//
|
//
|
||||||
// theme_dir "/tmp"
|
// theme_dir "/tmp"
|
||||||
|
|
||||||
// Much scrollback.
|
// Much scrollback.
|
||||||
scroll_buffer_size 100000
|
scroll_buffer_size 100000
|
||||||
|
|
||||||
// Keep pane contents if we resurrect a terminal.
|
// Keep pane contents if we resurrect a terminal.
|
||||||
serialize_pane_viewport true
|
serialize_pane_viewport true
|
||||||
|
|
||||||
// Use the above limit for serializtaion.
|
// Use the above limit for serializtaion.
|
||||||
scrollback_lines_to_serialize 0
|
scrollback_lines_to_serialize 0
|
||||||
|
|
||||||
// How often in seconds sessions are serialized
|
// How often in seconds sessions are serialized
|
||||||
//
|
//
|
||||||
// serialization_interval 10000
|
// serialization_interval 10000
|
||||||
|
|
||||||
// Whether to show tips on startup
|
// Whether to show tips on startup
|
||||||
// Default: true
|
// Default: true
|
||||||
//
|
//
|
||||||
show_startup_tips true
|
show_startup_tips true
|
||||||
|
|
||||||
// Whether to show release notes on first version run
|
// Whether to show release notes on first version run
|
||||||
// Default: true
|
// Default: true
|
||||||
//
|
//
|
||||||
// show_release_notes false
|
// show_release_notes false
|
||||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue