mirror of
https://github.com/Hydroxycarbamide/astrovim_user.git
synced 2025-05-05 04:39:06 -04:00
add navigation binds
This commit is contained in:
parent
dcd6af00f6
commit
ebc7c1077f
1 changed files with 12 additions and 0 deletions
|
@ -69,6 +69,18 @@ return {
|
||||||
["<Leader>b"] = { desc = "Buffers" },
|
["<Leader>b"] = { desc = "Buffers" },
|
||||||
-- quick save
|
-- quick save
|
||||||
-- ["<C-s>"] = { ":w!<cr>", desc = "Save File" }, -- change description but the same command
|
-- ["<C-s>"] = { ":w!<cr>", desc = "Save File" }, -- change description but the same command
|
||||||
|
["gh"] = {
|
||||||
|
"0",
|
||||||
|
desc = "Goto line start"
|
||||||
|
},
|
||||||
|
["gl"] = {
|
||||||
|
"$",
|
||||||
|
desc = "Goto line end"
|
||||||
|
},
|
||||||
|
["gs"] = {
|
||||||
|
"^",
|
||||||
|
desc = "Goto first non-blank in line"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
t = {
|
t = {
|
||||||
-- setting a mapping to false will disable it
|
-- setting a mapping to false will disable it
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue