From d279c5f9dd8adb86a4c9e73adbc325300a1a1305 Mon Sep 17 00:00:00 2001 From: DanRoscigno Date: Fri, 9 Jun 2023 12:44:30 -0400 Subject: [PATCH] add romgrk/barbar.nvim for filename tabs --- lua/custom/plugins/filename_tabs.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lua/custom/plugins/filename_tabs.lua diff --git a/lua/custom/plugins/filename_tabs.lua b/lua/custom/plugins/filename_tabs.lua new file mode 100644 index 00000000..89337be4 --- /dev/null +++ b/lua/custom/plugins/filename_tabs.lua @@ -0,0 +1,18 @@ + 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 + } + }