53 lines
870 B
TOML
53 lines
870 B
TOML
theme = "gruvbox_dark_hard"
|
|
|
|
[editor]
|
|
line-number = "relative"
|
|
bufferline = "multiple"
|
|
popup-border = "popup"
|
|
|
|
[editor.statusline]
|
|
left = [
|
|
"mode",
|
|
"spinner",
|
|
"file-type",
|
|
"file-name",
|
|
"version-control",
|
|
"read-only-indicator",
|
|
"file-modification-indicator"
|
|
]
|
|
center = []
|
|
right = [
|
|
"diagnostics",
|
|
"selections",
|
|
"register",
|
|
"position",
|
|
"position-percentage",
|
|
"file-encoding"
|
|
]
|
|
|
|
[editor.cursor-shape]
|
|
normal = "block"
|
|
insert = "bar"
|
|
select = "underline"
|
|
|
|
[editor.indent-guides]
|
|
render = true
|
|
|
|
[editor.soft-wrap]
|
|
enable = true
|
|
|
|
[keys.normal]
|
|
C-s = ":w"
|
|
C-o = "file_picker"
|
|
S-ret = ["open_below", "insert_mode"]
|
|
|
|
E = "extend_to_line_end"
|
|
x = "extend_to_line_bounds"
|
|
X = "extend_line_below"
|
|
|
|
d = "delete_selection_noyank"
|
|
A-d = "delete_selection"
|
|
c = "change_selection_noyank"
|
|
A-c = "change_selection"
|
|
|
|
S-v = ["extend_to_line_bounds","select_mode"]
|