update astronvim to v3

This commit is contained in:
Alexander Navarro 2023-04-07 17:25:47 -04:00
parent 5ff843d62d
commit 72fe433bc2
19 changed files with 432 additions and 413 deletions

View file

@ -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,