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
|
path-completion = true
|
||||||
auto-format = true
|
auto-format = true
|
||||||
true-color = true
|
true-color = true
|
||||||
|
bufferline = "always"
|
||||||
|
|
||||||
[editor.cursor-shape]
|
[editor.cursor-shape]
|
||||||
insert = "bar"
|
insert = "bar"
|
||||||
|
@ -14,6 +15,8 @@ select = "underline"
|
||||||
|
|
||||||
[editor.lsp]
|
[editor.lsp]
|
||||||
enable = true
|
enable = true
|
||||||
|
auto-signature-help = true
|
||||||
|
display-messages = true
|
||||||
|
|
||||||
[editor.whitespace.render]
|
[editor.whitespace.render]
|
||||||
space = "all"
|
space = "all"
|
||||||
|
@ -45,9 +48,18 @@ L = "goto_line_end"
|
||||||
A-j = "@<C-d>"
|
A-j = "@<C-d>"
|
||||||
A-k = "@<C-u>"
|
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
|
# Stolen stuff for being more vim like
|
||||||
# Undoing the 'd' + motion commands restores the selection which is annoying
|
# Undoing the 'd' + motion commands restores the selection which is annoying
|
||||||
u = ["undo", "collapse_selection"]
|
u = ["undo", "collapse_selection"]
|
||||||
|
D = "@vgld"
|
||||||
|
|
||||||
[keys.insert]
|
[keys.insert]
|
||||||
C-h = "move_char_left"
|
C-h = "move_char_left"
|
||||||
|
|
Loading…
Add table
Reference in a new issue