Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(bars-and-lines): add dropbar.nvim #246

Merged
merged 2 commits into from
May 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ return {
{
"rebelot/heirline.nvim",
optional = true,
opts = function(opts) opts.tabline = nil end,
opts = function(_, opts) opts.tabline = nil end,
},
}
7 changes: 7 additions & 0 deletions lua/astrocommunity/bars-and-lines/dropbar-nvim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# dropbar.nvim

**Repository:** https://github.com/Bekaboo/dropbar.nvim

IDE-like breadcrumbs, out of the box

This also disables the Heirline based winbar
8 changes: 8 additions & 0 deletions lua/astrocommunity/bars-and-lines/dropbar-nvim/dropbar.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
return {
{ "Bekaboo/dropbar.nvim", event = "VeryLazy", opts = {} },
{
"rebelot/heirline.nvim",
optional = true,
opts = function(_, opts) opts.winbar = nil end,
},
}
2 changes: 1 addition & 1 deletion lua/astrocommunity/bars-and-lines/feline-nvim/feline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ return {
{
"rebelot/heirline.nvim",
optional = true,
opts = function(opts) opts.statusline = nil end,
opts = function(_, opts) opts.statusline = nil end,
},
}
2 changes: 1 addition & 1 deletion lua/astrocommunity/bars-and-lines/lualine-nvim/lualine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ return {
{
"rebelot/heirline.nvim",
optional = true,
opts = function(opts) opts.statusline = nil end,
opts = function(_, opts) opts.statusline = nil end,
},
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ return {
{
"rebelot/heirline.nvim",
optional = true,
opts = function(opts) opts.statuscolumn = nil end,
opts = function(_, opts) opts.statuscolumn = nil end,
},
}