Initial Commit

This commit is contained in:
Falon Clark
2026-03-19 13:09:21 -04:00
commit a7f8df9e50
24 changed files with 537 additions and 0 deletions

19
lua/plugins/barbar.lua Normal file
View File

@@ -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 = {
animation = false,
clickable = false,
sidebar_filetypes = {
NvimTree = true,
},
},
version = "^1.0.0", -- optional: only update when a new 1.x version is released
}