Mercurial > dotfiles
annotate dot_config/zellij/config.kdl.tmpl @ 876:8589883596fd
fix: remove pathdirs option to avoid slow path completions
see: https://stackoverflow.com/questions/76746392/why-is-my-zsh-tab-completion-slow-on-commands-but-not-directories
> Perform a path search even on command names with slashes in them.
> Thus if ?/usr/local/bin? is in the user?s path, and he or she types ?X11/xinit?, the command ?/usr/local/bin/X11/xinit? will be executed (assuming it exists).
> Commands explicitly beginning with ?/?, ?./? or ?../? are not subject to the path search. This also applies to the ?.? and source builtins.
author | Zeger Van de Vannet <zeger@vandevan.net> |
---|---|
date | Thu, 25 Apr 2024 10:05:40 +0200 |
parents | 02fbf26b9f16 |
children |
rev | line source |
---|---|
794 | 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 -}} |