From 7ba37104996863f049c773a0cd4d659639112a93 Mon Sep 17 00:00:00 2001 From: ap8351 Date: Wed, 10 Apr 2024 17:35:26 +0200 Subject: [PATCH] add barbar bars --- 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 + }, +}