Neovim 101 — Status Line, WinBar, and Buffer Line
Metadata
- Author: alpha2phi
- Full Title: Neovim 101 — Status Line, WinBar, and Buffer Line
- URL: https://alpha2phi.medium.com/neovim-101-status-line-winbar-and-buffer-line-404600bcd982
Highlights
Instead of displaying buffers using the buffer line, we modify bufferline.nvim
to display tab pages only.
require(“bufferline”).setup {
options = {
mode = “tabs”, — tabs or buffers
… (View Highlight)