1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2025-04-08 21:23:40 +00:00
dotfiles/.config/helix/config.toml
2025-03-17 10:49:28 +01:00

60 lines
1.1 KiB
TOML

theme = "dracula"
[editor]
mouse = false
shell = ["fish", "-c"]
cursorline = true
idle-timeout = 5
true-color = true
bufferline = "always"
default-yank-register = "+"
[editor.lsp]
display-messages = true
goto-reference-include-declaration = false
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.file-picker]
hidden = false
[editor.whitespace.render]
space = "none"
tab = "none"
newline = "all"
[editor.indent-guides]
render = true
[keys.normal]
d = ["delete_selection_noyank"]
D = ["delete_selection"]
c = ["change_selection_noyank"]
V = "extend_to_line_end"
C-k = "goto_next_buffer"
C-j = "goto_previous_buffer"
C-b = ":buffer-close"
esc = ["collapse_selection", "keep_primary_selection"]
[keys.normal.space]
f = "file_picker_in_current_directory"
F = "no_op"
p = "no_op"
P = "no_op"
y = "no_op"
[keys.insert]
esc = ["collapse_selection", "normal_mode"]
[keys.select]
d = ["delete_selection_noyank"]
D = ["delete_selection"]
c = ["change_selection_noyank"]
V = "extend_to_line_end"
esc = ["collapse_selection", "keep_primary_selection", "normal_mode"]