https://github.com/abhilash26/zenbufline.nvim
A lua based buffer line for neovim
https://github.com/abhilash26/zenbufline.nvim
bufferline lua neovim neovim-plugin neovim-plugin-lua
Last synced: 8 months ago
JSON representation
A lua based buffer line for neovim
- Host: GitHub
- URL: https://github.com/abhilash26/zenbufline.nvim
- Owner: abhilash26
- License: mit
- Created: 2024-07-09T03:47:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-13T07:13:38.000Z (over 1 year ago)
- Last Synced: 2025-03-29T18:41:27.148Z (9 months ago)
- Topics: bufferline, lua, neovim, neovim-plugin, neovim-plugin-lua
- Language: Lua
- Homepage:
- Size: 11.7 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zenbufline.nvim
A minimal lua based buffer line for neovim

### 🚧 WIP 🚧
## Requirements
* Requires neovim version >= 0.10
* `vim.opt.showtabline=2` in your init.lua for bufferlin.
* Have a [nerd font installed](https://www.nerdfonts.com/font-downloads)
## Installation
### Lazy
```lua
{
"abhilash26/zenbufline.nvim",
event = { "BufReadPost", "BufNewFile" },
opts = {}
},
```
### Pckr (Spiritual successor of packer)
```lua
{ "abhilash26/zenbufline.nvim",
config = function()
require("zenbufline").setup()
end
};
```
## Minimum Configuration
```lua
require("zenbufline").setup()
```
### Click to see default configuration
Default configuration is here [options](https://github.com/abhilash26/zenbufline.nvim/blob/main/lua/zenbufline/config.lua)