update astronvim to v3
This commit is contained in:
parent
5ff843d62d
commit
72fe433bc2
19 changed files with 432 additions and 413 deletions
|
|
@ -1,5 +1,21 @@
|
|||
return {
|
||||
n = {
|
||||
|
||||
-- Buffers
|
||||
["H"] = {
|
||||
|
||||
function()
|
||||
require("astronvim.utils.buffer").nav( -(vim.v.count > 0 and vim.v.count or 1))
|
||||
end,
|
||||
desc = "Previous buffer",
|
||||
},
|
||||
["L"] = {
|
||||
function()
|
||||
require("astronvim.utils.buffer").nav(vim.v.count > 0 and vim.v.count or 1)
|
||||
end,
|
||||
desc = "Next buffer",
|
||||
},
|
||||
|
||||
["<C-t>"] = { "<cmd>ToggleTerm<cr>", desc = "Toggle terminal" },
|
||||
["<leader>fn"] = false,
|
||||
["<leader>fo"] = false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue