From fd59faa8d0a4705600d688ae7e5f5b62439b760c Mon Sep 17 00:00:00 2001 From: john-okeefe Date: Thu, 11 Apr 2024 11:41:58 -0400 Subject: [PATCH] updated to released template --- lua/plugins/astrocore.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lua/plugins/astrocore.lua b/lua/plugins/astrocore.lua index de17c22..7a8cca5 100644 --- a/lua/plugins/astrocore.lua +++ b/lua/plugins/astrocore.lua @@ -47,14 +47,14 @@ return { -- second key is the lefthand side of the map -- navigate buffer tabs with `H` and `L` - -- L = { - -- function() require("astrocore.buffer").nav(vim.v.count > 0 and vim.v.count or 1) end, - -- desc = "Next buffer", - -- }, - -- H = { - -- function() require("astrocore.buffer").nav(-(vim.v.count > 0 and vim.v.count or 1)) end, - -- desc = "Previous buffer", - -- }, + L = { + function() require("astrocore.buffer").nav(vim.v.count > 0 and vim.v.count or 1) end, + desc = "Next buffer", + }, + H = { + function() require("astrocore.buffer").nav(-(vim.v.count > 0 and vim.v.count or 1)) end, + desc = "Previous buffer", + }, -- mappings seen under group name "Buffer" ["bD"] = {