1
0
Fork 0
mirror of https://codeberg.org/Mo8it/server_dotfiles.git synced 2024-09-19 19:01:16 +00:00
server_dotfiles/.config/helix/config.toml

56 lines
1.1 KiB
TOML
Raw Normal View History

2023-08-17 22:38:28 +00:00
theme = "dracula"
2022-11-22 18:08:15 +00:00
[editor]
mouse = false
shell = ["fish", "-c"]
cursorline = true
2023-08-17 22:38:28 +00:00
idle-timeout = 5
2022-11-22 18:08:15 +00:00
true-color = true
2023-08-17 22:38:28 +00:00
bufferline = "always"
2022-11-22 18:08:15 +00:00
color-modes = true
[editor.lsp]
display-messages = true
2023-08-17 22:38:28 +00:00
goto-reference-include-declaration = false
2022-11-22 18:08:15 +00:00
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
2023-08-17 22:38:28 +00:00
[editor.file-picker]
hidden = false
2022-11-22 18:08:15 +00:00
[editor.whitespace.render]
space = "none"
tab = "none"
newline = "all"
[editor.indent-guides]
render = true
[keys.normal]
p = "paste_clipboard_after"
P = "paste_clipboard_before"
y = "yank_joined_to_clipboard"
D = ["yank_main_selection_to_clipboard", "delete_selection"]
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.insert]
esc = ["collapse_selection", "normal_mode"]
[keys.select]
p = "replace_selections_with_clipboard"
P = "no_op"
y = "yank_joined_to_clipboard"
D = ["yank_main_selection_to_clipboard", "delete_selection"]
V = "extend_to_line_end"
esc = ["collapse_selection", "keep_primary_selection", "normal_mode"]