summaryrefslogtreecommitdiff
path: root/lua/lv-bufferline
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-06 12:28:50 -0400
committerchristianchiarulli <[email protected]>2021-07-06 12:28:50 -0400
commitf22e1bd8cb6a38fdcad83b96d7739af778cd9d1d (patch)
treedbd52ee15583f746f21e5eae157e546388ee206d /lua/lv-bufferline
parent20485971641a9d916640ccad05586a641c984ed6 (diff)
parent68bfac0468ea4d5d7faf5bede0a4ab8cb5572f0c (diff)
cleanup and stability improvements0.4.1
Diffstat (limited to 'lua/lv-bufferline')
-rw-r--r--lua/lv-bufferline/init.lua73
1 files changed, 0 insertions, 73 deletions
diff --git a/lua/lv-bufferline/init.lua b/lua/lv-bufferline/init.lua
deleted file mode 100644
index af1a2d20..00000000
--- a/lua/lv-bufferline/init.lua
+++ /dev/null
@@ -1,73 +0,0 @@
-local M = {}
-
-M.config = function()
- -- Buffer line setup
- require("bufferline").setup {
- options = {
- indicator_icon = "▎",
- buffer_close_icon = "",
- modified_icon = "●",
- close_icon = "",
- close_command = "bdelete %d",
- right_mouse_command = "bdelete! %d",
- left_trunc_marker = "",
- right_trunc_marker = "",
- offsets = {
- {
- filetype = "NvimTree",
- text = "",
- text_align = "center",
- padding = 1,
- },
- },
- show_tab_indicators = true,
- show_close_icon = false,
- },
- highlights = {
- fill = {
- guifg = { attribute = "fg", highlight = "Normal" },
- guibg = { attribute = "bg", highlight = "StatusLineNC" },
- },
- -- background = {
- -- guifg = {attribute = "fg", highlight = "Normal"},
- -- guibg = {attribute = "bg", highlight = "StatusLine"}
- -- },
- -- buffer_visible = {
- -- gui = "",
- -- guifg = {attribute = "fg", highlight = "Normal"},
- -- guibg = {attribute = "bg", highlight = "Normal"}
- -- },
- -- buffer_selected = {
- -- gui = "",
- -- guifg = {attribute = "fg", highlight = "Normal"},
- -- guibg = {attribute = "bg", highlight = "Normal"}
- -- },
- -- separator = {
- -- guifg = {attribute = "bg", highlight = "Normal"},
- -- guibg = {attribute = "bg", highlight = "StatusLine"}
- -- },
- -- separator_selected = {
- -- guifg = {attribute = "fg", highlight = "Special"},
- -- guibg = {attribute = "bg", highlight = "Normal"}
- -- },
- -- separator_visible = {
- -- guifg = {attribute = "fg", highlight = "Normal"},
- -- guibg = {attribute = "bg", highlight = "StatusLineNC"}
- -- },
- -- close_button = {
- -- guifg = {attribute = "fg", highlight = "Normal"},
- -- guibg = {attribute = "bg", highlight = "StatusLine"}
- -- },
- -- close_button_selected = {
- -- guifg = {attribute = "fg", highlight = "normal"},
- -- guibg = {attribute = "bg", highlight = "normal"}
- -- },
- -- close_button_visible = {
- -- guifg = {attribute = "fg", highlight = "normal"},
- -- guibg = {attribute = "bg", highlight = "normal"}
- -- }
- },
- }
-end
-
-return M