summaryrefslogtreecommitdiff
path: root/nvim/after/plugin/bufferline.lua
diff options
context:
space:
mode:
authorJosh <joshott16@gmail.com>2025-07-22 13:16:24 -0400
committerJosh <joshott16@gmail.com>2025-07-22 13:16:24 -0400
commitaf2750e922c20c2cd2c24111adfac762264eaf15 (patch)
treef66cac0bc8d4e44da9953f82268c129382fb87d9 /nvim/after/plugin/bufferline.lua
parent7cf85579f61e46a8fa0347976cb68446bf4f3c9c (diff)
downloaddotfiles-af2750e922c20c2cd2c24111adfac762264eaf15.tar.gz
dotfiles-af2750e922c20c2cd2c24111adfac762264eaf15.zip
removing old nvim plugin configs
Diffstat (limited to 'nvim/after/plugin/bufferline.lua')
-rw-r--r--nvim/after/plugin/bufferline.lua22
1 files changed, 0 insertions, 22 deletions
diff --git a/nvim/after/plugin/bufferline.lua b/nvim/after/plugin/bufferline.lua
deleted file mode 100644
index 53db4f3..0000000
--- a/nvim/after/plugin/bufferline.lua
+++ /dev/null
@@ -1,22 +0,0 @@
-vim.cmd.colorscheme "catppuccin"
-vim.opt.termguicolors = true
-
-require("bufferline").setup({
- options = {
- offsets = {
- {
- filetype = "undotree",
- text = "Undo Zone",
- text_align = "center",
- separator = true
- }
- },
- show_buffer_icons = true, -- disable filetype icons for buffers
- separator_style = "thick",
- hover = {
- enabled = true,
- delay = 200,
- reveal = {'close'}
- },
- }
-})