mirror of
https://codeberg.org/Mo8it/dotfiles.git
synced 2025-04-08 21:23:40 +00:00
56 lines
989 B
TOML
56 lines
989 B
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 = ["yank", "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.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 = ["yank", "delete_selection"]
|
|
V = "extend_to_line_end"
|
|
|
|
esc = ["collapse_selection", "keep_primary_selection", "normal_mode"]
|