Skip to content

Commit

Permalink
chore(zellij): enable pane frames
Browse files Browse the repository at this point in the history
  • Loading branch information
0xRichardH committed Jul 1, 2024
1 parent d7c57f4 commit 013d109
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/zellij/config.kdl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
theme "catppuccin-mocha"
default_layout "compact"
default_layout "compact" // default
on_force_close "detach"
pane_frames false
pane_frames true
layout_dir "~/.config/zellij/layouts"

keybinds {
Expand Down
29 changes: 29 additions & 0 deletions config/zellij/layouts/default.kdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
layout {
pane split_direction="vertical" {
pane
}

pane size=1 borderless=true {
plugin location="file:~/config/zellij/plugins/zjstatus.wasm" {
format_left "{mode}#[fg=black,bg=blue,bold]{session} #[fg=blue,bg=#181825]{tabs}"
format_right "#[fg=#181825,bg=#b1bbfa]{datetime}"
format_space "#[bg=#181825]"

hide_frame_for_single_pane "true"

mode_normal "#[bg=blue] "

tab_normal "#[fg=#181825,bg=#4C4C59] #[fg=#000000,bg=#4C4C59]{index}  {name} #[fg=#4C4C59,bg=#181825]"
tab_normal_fullscreen "#[fg=#6C7086,bg=#181825] {index} {name} [] "
tab_normal_sync "#[fg=#6C7086,bg=#181825] {index} {name} <> "
tab_active "#[fg=#181825,bg=#ffffff,bold,italic] {index}  {name} #[fg=#ffffff,bg=#181825]"
tab_active_fullscreen "#[fg=#9399B2,bg=#181825,bold,italic] {index} {name} [] "
tab_active_sync "#[fg=#9399B2,bg=#181825,bold,italic] {index} {name} <> "


datetime "#[fg=#6C7086,bg=#b1bbfa,bold] {format} "
datetime_format "%A, %d %b %Y %H:%M"
datetime_timezone "Europe/Berlin"
}
}
}

0 comments on commit 013d109

Please sign in to comment.