Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LunarVim/breadcrumbs.nvim
🍞 breadcrumbs.nvim context for your code in the winbar.
https://github.com/LunarVim/breadcrumbs.nvim
lua neovim neovim-lua-plugin neovim-plugin plugin
Last synced: 11 days ago
JSON representation
🍞 breadcrumbs.nvim context for your code in the winbar.
- Host: GitHub
- URL: https://github.com/LunarVim/breadcrumbs.nvim
- Owner: LunarVim
- License: gpl-3.0
- Created: 2023-07-10T05:35:01.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-12T00:39:38.000Z (10 months ago)
- Last Synced: 2024-08-01T16:44:39.040Z (3 months ago)
- Topics: lua, neovim, neovim-lua-plugin, neovim-plugin, plugin
- Language: Lua
- Homepage: https://chrisatmachine.com
- Size: 19.5 KB
- Stars: 32
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🍞 breadcrumbs.nvim
Breadcrumbs is a plugin that works with nvim-navic to provide context about your code in the winbar.
## Install
Add the following plugins with your favorite plugin manager
```
"SmiteshP/nvim-navic",
"LunarVim/breadcrumbs.nvim"
```## Setup
```lua
require("nvim-navic").setup {
lsp = {
auto_attach = true,
},
}require("breadcrumbs").setup()
```## Lazy.nvim
```lua
local M = {
"LunarVim/breadcrumbs.nvim",
dependencies = {
{"SmiteshP/nvim-navic"},
},
}function M.config()
require("breadcrumbs").setup()
endreturn M
```## TODO
- setup options