comparison dot_config/zellij/config.kdl.tmpl @ 794:02fbf26b9f16

feat: template zellij config
author zegervdv <zegervdv@me.com>
date Tue, 23 May 2023 08:08:42 +0200
parents
children
comparison
equal deleted inserted replaced
793:257ecaf271ee 794:02fbf26b9f16
1 // No fancy symbols
2 simplified_ui true
3
4 // No frames around panes
5 pane_frames false
6
7 default_mode "locked"
8
9 keybinds {
10 locked {
11 bind "Alt h" "Alt Left" { MoveFocus "Left"; }
12 bind "Alt j" "Alt Down" { MoveFocus "Down"; }
13 bind "Alt k" "Alt Up" { MoveFocus "Up"; }
14 bind "Alt l" "Alt Right" { MoveFocus "Right"; }
15 }
16
17 shared_except "locked" {
18 bind "Esc" { SwitchToMode "locked"; }
19 }
20 }
21
22 themes {
23 catppuccin-macchiato {
24 fg 202 211 245
25 bg 91 96 120
26 black 30 32 48
27 red 237 135 150
28 green 166 218 149
29 yellow 238 212 159
30 blue 138 173 244
31 magenta 245 189 230
32 cyan 145 215 227
33 white 202 211 245
34 orange 245 169 127
35 }
36 }
37
38 {{ if .dark -}}
39 theme "catppuccin-macchiato"
40 {{ else -}}
41 theme "espresso-tutti-colori"
42 {{ end -}}