diff options
Diffstat (limited to 'nvim/lua/plugins/bufferline.lua')
| -rw-r--r-- | nvim/lua/plugins/bufferline.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/nvim/lua/plugins/bufferline.lua b/nvim/lua/plugins/bufferline.lua new file mode 100644 index 0000000..fce1b14 --- /dev/null +++ b/nvim/lua/plugins/bufferline.lua @@ -0,0 +1,17 @@ +return { + 'akinsho/bufferline.nvim', -- bufferline + version = "v4.*", + dependencies = 'nvim-tree/nvim-web-devicons', + config = function() + require('bufferline').setup({ + options = { + mode = "tabs", + show_tab_indicators = false, + hover = { + enabled = true, + delay = 200 + } + } + }) + end +} |
