From 00e0db32a0a64562067c1f2f56267c01a214c6e9 Mon Sep 17 00:00:00 2001 From: christianchiarulli Date: Tue, 6 Jul 2021 11:36:04 -0400 Subject: remove extra config files --- lua/lv-bufferline/init.lua | 73 ---------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 lua/lv-bufferline/init.lua (limited to 'lua/lv-bufferline/init.lua') 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 -- cgit v1.2.3