window/tab stuff
This commit is contained in:
parent
28062791da
commit
726c9b8464
1 changed files with 12 additions and 0 deletions
12
config.toml
12
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 = "@<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"
|
||||
|
|
Loading…
Add table
Reference in a new issue