window/tab stuff

This commit is contained in:
cscherr 2025-06-04 12:16:00 +02:00
parent 28062791da
commit 726c9b8464
Signed by: cscherrNT
GPG key ID: 8E2B45BC51A27EA7

View file

@ -6,6 +6,7 @@ auto-completion = true
path-completion = true
auto-format = true
true-color = true
bufferline = "always"
[editor.cursor-shape]
insert = "bar"
@ -14,6 +15,8 @@ select = "underline"
[editor.lsp]
enable = true
auto-signature-help = true
display-messages = true
[editor.whitespace.render]
space = "all"
@ -45,9 +48,18 @@ L = "goto_line_end"
A-j = "@<C-d>"
A-k = "@<C-u>"
"space" = { '"' = "vsplit", '%' = "hsplit" }
C-h = "jump_view_left"
C-j = "jump_view_down"
C-k = "jump_view_up"
C-l = "jump_view_right"
"tab" = "goto_next_buffer"
# Stolen stuff for being more vim like
# Undoing the 'd' + motion commands restores the selection which is annoying
u = ["undo", "collapse_selection"]
D = "@vgld"
[keys.insert]
C-h = "move_char_left"