comparison dot_config/helix/config.toml.tmpl @ 824:1b779efc2b42

feat: template helix config to set the colorscheme
author zegervdv <zegervdv@me.com>
date Thu, 21 Dec 2023 11:47:20 +0100
parents
children cb9216ce3678
comparison
equal deleted inserted replaced
823:2e86aa5360eb 824:1b779efc2b42
1 {{ if .dark -}}
2 theme = "catppuccin_mocha"
3 {{ else -}}
4 theme = "tutticolori"
5 {{ end }}
6
7 [editor]
8 line-number = "relative"
9 cursorline = true
10
11 [editor.cursor-shape]
12 insert = "bar"
13 normal = "block"
14 select = "underline"
15
16 [editor.indent-guides]
17 render = true
18 skip-levels = 1
19
20 [keys.insert]
21 C-f = "move_char_right"
22
23 [keys.normal."space"]
24 o = "file_picker_in_current_buffer_directory"
25
26 [keys.normal.g]
27 l = ["collapse_selection", "extend_to_line_end"]
28 h = ["collapse_selection", "extend_to_line_start"]
29 s = ["collapse_selection", "select_mode", "goto_first_nonwhitespace", "exit_select_mode"]