From ff93f931905a082ef835c26ec18b7045b0cef39e Mon Sep 17 00:00:00 2001 From: Mohammad Moosazadeh Date: Wed, 12 Jun 2024 12:13:46 -0400 Subject: [PATCH] Add barbar plugin --- lua/custom/plugins/barbar.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lua/custom/plugins/barbar.lua diff --git a/lua/custom/plugins/barbar.lua b/lua/custom/plugins/barbar.lua new file mode 100644 index 00000000..8ed38c8a --- /dev/null +++ b/lua/custom/plugins/barbar.lua @@ -0,0 +1,19 @@ +return { + { + 'romgrk/barbar.nvim', + dependencies = { + 'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status + 'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons + }, + init = function() + vim.g.barbar_auto_setup = false + end, + opts = { + -- lazy.nvim will automatically call setup for you. put your options here, anything missing will use the default: + -- animation = true, + -- insert_at_start = true, + -- …etc. + }, + version = '^1.0.0', -- optional: only update when a new 1.x version is released + }, +}