diff --git a/config.toml b/config.toml index 505dd89..bb1a139 100644 --- a/config.toml +++ b/config.toml @@ -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 = "@" A-k = "@" +"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"