update zellij layout and fix whichkey

- alacritty: add cursor style
- nvim: fix which-key, add colorizer, add debugger, update plugins
- zellij: revamp layouts
- starship: change prompt

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
2024-07-17 23:56:15 +05:30
parent 567d248572
commit 9f298d08da
11 changed files with 122 additions and 204 deletions
+2 -2
View File
@@ -228,7 +228,7 @@ plugins {
// Options:
// - true
// - false (default)
serialize_pane_viewport true
// serialize_pane_viewport true
// Scrollback lines to serialize along with the pane viewport when serializing sessions, 0
// defaults to the scrollback size. If this number is higher than the scrollback size, it will
@@ -262,7 +262,7 @@ themes {
theme "carbonfox"
// The name of the default layout to load on startup
Default: "compact"
// Default: "compact"
//
default_layout "compact"
+13 -5
View File
@@ -1,12 +1,20 @@
layout {
pane split_direction="horizontal"{
pane command="nvim" focus=true name="Editor" size="75%" {
args "."
pane split_direction="horizontal" {
pane {
edit "."
focus true
name "Editor"
size "75%"
borderless true
}
pane {
size "25%"
}
pane name="Terminal"
}
pane size=1 borderless=true {
pane {
plugin location="zellij:compact-bar"
borderless true
size 1
}
}
+14 -6
View File
@@ -1,14 +1,22 @@
layout {
pane split_direction="vertical" {
pane command="nvim" focus=true name="Editor" size="60%" {
args "."
pane {
edit "."
focus true
name "Editor"
size "60%"
borderless true
}
pane split_direction="horizontal" name="terminal" {
pane name="Git" command="lazygit"
pane name="Terminal" size="25%"
pane stacked=true {
pane {
name "LazyGit"
command "lazygit"
}
pane {
name "Terminal"
}
}
}
pane size=1 borderless=true {
plugin location="zellij:compact-bar"
}