mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 09:48:59 +02:00
fix(bufferline): plugin was renamed from nvim-bufferline.lua -> bufferline.nvim. Fixes #128
This commit is contained in:
parent
5a4cb1b7ee
commit
2ae2a63265
2 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ map("v", "<A-k>", ":m '<-2<cr>gv=gv", { desc = "Move up" })
|
||||||
map("i", "<A-k>", "<Esc>:m .-2<cr>==gi", { desc = "Move up" })
|
map("i", "<A-k>", "<Esc>:m .-2<cr>==gi", { desc = "Move up" })
|
||||||
|
|
||||||
-- buffers
|
-- buffers
|
||||||
if Util.has("nvim-bufferline.lua") then
|
if Util.has("bufferline.nvim") then
|
||||||
map("n", "<S-h>", "<cmd>BufferLineCyclePrev<cr>", { desc = "Prev buffer" })
|
map("n", "<S-h>", "<cmd>BufferLineCyclePrev<cr>", { desc = "Prev buffer" })
|
||||||
map("n", "<S-l>", "<cmd>BufferLineCycleNext<cr>", { desc = "Next buffer" })
|
map("n", "<S-l>", "<cmd>BufferLineCycleNext<cr>", { desc = "Next buffer" })
|
||||||
map("n", "[b", "<cmd>BufferLineCyclePrev<cr>", { desc = "Prev buffer" })
|
map("n", "[b", "<cmd>BufferLineCyclePrev<cr>", { desc = "Prev buffer" })
|
||||||
|
|
|
@ -42,7 +42,7 @@ return {
|
||||||
|
|
||||||
-- bufferline
|
-- bufferline
|
||||||
{
|
{
|
||||||
"akinsho/nvim-bufferline.lua",
|
"akinsho/bufferline.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
opts = {
|
opts = {
|
||||||
options = {
|
options = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue