From c9a8e4efb2849d3a30710b4d37d3cf9359db61b9 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Wed, 18 May 2022 03:14:35 +0100 Subject: [PATCH] fix: more plugin pinning update - pin bufferline to v2.1.0 - add pin for nvim-web-devicons --- neovim/lua/plugins.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index 9818cd5..d0ff1fd 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -23,9 +23,14 @@ return require("packer").startup(function(use) run = ":TSUpdate", } + use { + "kyazdani42/nvim-web-devicons", + commit = "cde67b5d5427daeecfd7c77cf02ded23a26980bb", -- 2022-05-14 + } + use { "akinsho/bufferline.nvim", - commit = "374ef05019bf4708e12cd20a135b4766cf0cf9a5", -- 2022-05-14 + tag = "v2.1.0", requires = "kyazdani42/nvim-web-devicons", config = require("config.bufferline"), }