Add initial IDE layout for Zellij

This commit is contained in:
Daniel Lynn 2023-03-22 12:54:14 -05:00
parent 9c73bfd7d4
commit 6513581d3b
Signed by: daniel
GPG Key ID: 28496A140E180A9D
2 changed files with 13 additions and 0 deletions

View File

@ -11,6 +11,10 @@ if (( $+commands[helix] )); then
alias hx="helix" alias hx="helix"
fi fi
if (( $+commands[zellij] )); then
alias ide="zellij --layout ${HOME}/.config/zellij/layouts/ide.kdl"
fi
if (( $+commands[coreutils] )); then if (( $+commands[coreutils] )); then
alias [ alias [
alias arch="coreutils arch" alias arch="coreutils arch"

9
zellij/layouts/ide.kdl Normal file
View File

@ -0,0 +1,9 @@
layout {
default_tab_template {
pane size=1 borderless=true {
plugin location="zellij:compact-bar"
}
pane name="Editor" size="75%" focus=true edit="./"
pane name="Terminal" size="25%"
}
}