annotate dot_config/helix/config.toml.tmpl @ 877:56e26ce1a5ce draft

feat: improve verilog support
author Zeger Van de Vannet <zeger@vandevan.net>
date Tue, 16 Apr 2024 19:08:02 +0200
parents d2ceb12792f9
children dd60abf6b7da 1ec9ad09d664
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
824
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
1 {{ if .dark -}}
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
2 theme = "catppuccin_mocha"
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
3 {{ else -}}
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
4 theme = "tutticolori"
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
5 {{ end }}
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
6
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
7 [editor]
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
8 line-number = "relative"
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
9 cursorline = true
851
ff1e2121f5bc feat: enable auto-save
Zeger Van de Vannet <zegervdv@me.com>
parents: 850
diff changeset
10 auto-save = true
824
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
11
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
12 [editor.cursor-shape]
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
13 insert = "bar"
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
14 normal = "block"
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
15 select = "underline"
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
16
850
c772355fedfb feat: tweak helix colors
Zeger Van de Vannet <zegervdv@me.com>
parents: 833
diff changeset
17 [editor.whitespace.render]
c772355fedfb feat: tweak helix colors
Zeger Van de Vannet <zegervdv@me.com>
parents: 833
diff changeset
18 newline = "all"
c772355fedfb feat: tweak helix colors
Zeger Van de Vannet <zegervdv@me.com>
parents: 833
diff changeset
19
c772355fedfb feat: tweak helix colors
Zeger Van de Vannet <zegervdv@me.com>
parents: 833
diff changeset
20 [editor.whitespace.characters]
852
d2ceb12792f9 feat: change eol character
Zeger Van de Vannet <zegervdv@me.com>
parents: 851
diff changeset
21 newline = "¬"
850
c772355fedfb feat: tweak helix colors
Zeger Van de Vannet <zegervdv@me.com>
parents: 833
diff changeset
22
824
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
23 [editor.indent-guides]
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
24 render = true
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
25 skip-levels = 1
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
26
831
cb9216ce3678 feat: show branch name in status line
zegervdv <zegervdv@me.com>
parents: 824
diff changeset
27 [editor.statusline]
850
c772355fedfb feat: tweak helix colors
Zeger Van de Vannet <zegervdv@me.com>
parents: 833
diff changeset
28 right = ["diagnostics", "selections", "register", "position", "position-percentage"]
831
cb9216ce3678 feat: show branch name in status line
zegervdv <zegervdv@me.com>
parents: 824
diff changeset
29
824
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
30 [keys.insert]
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
31 C-f = "move_char_right"
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
32
833
c7a17b231dd9 feat: make x select backwards when moving the selection anchor
zegervdv <zegervdv@me.com>
parents: 831
diff changeset
33 [keys.normal]
c7a17b231dd9 feat: make x select backwards when moving the selection anchor
zegervdv <zegervdv@me.com>
parents: 831
diff changeset
34 x = "extend_line"
c7a17b231dd9 feat: make x select backwards when moving the selection anchor
zegervdv <zegervdv@me.com>
parents: 831
diff changeset
35
824
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
36 [keys.normal."space"]
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
37 o = "file_picker_in_current_buffer_directory"
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
38
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
39 [keys.normal.g]
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
40 l = ["collapse_selection", "extend_to_line_end"]
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
41 h = ["collapse_selection", "extend_to_line_start"]
1b779efc2b42 feat: template helix config to set the colorscheme
zegervdv <zegervdv@me.com>
parents:
diff changeset
42 s = ["collapse_selection", "select_mode", "goto_first_nonwhitespace", "exit_select_mode"]