1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00
dotfiles/.config/helix/config.toml

56 lines
1.1 KiB
TOML
Raw Normal View History

2023-02-22 19:35:13 +00:00
theme = "dracula"
2022-11-06 14:05:47 +00:00
[editor]
mouse = false
shell = ["fish", "-c"]
cursorline = true
2022-12-01 02:52:16 +00:00
idle-timeout = 5
2022-11-06 14:05:47 +00:00
true-color = true
2022-12-01 02:52:16 +00:00
bufferline = "always"
2022-11-08 16:56:02 +00:00
color-modes = true
2022-11-06 14:05:47 +00:00
[editor.lsp]
display-messages = true
2023-05-18 10:21:40 +00:00
goto-reference-include-declaration = false
2022-11-06 14:05:47 +00:00
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
2023-02-25 18:53:43 +00:00
[editor.file-picker]
hidden = false
2022-11-08 16:56:02 +00:00
[editor.whitespace.render]
space = "none"
tab = "none"
newline = "all"
2022-11-06 14:05:47 +00:00
[editor.indent-guides]
render = true
2022-11-08 16:56:02 +00:00
[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"]