From 86628d459cabd0c29f0cdbb699e2e18807b958ed Mon Sep 17 00:00:00 2001 From: srdusr Date: Thu, 13 Oct 2022 23:52:54 +0200 Subject: Removed unnecessary files/lines --- nvim/lua/plugins/tabline.lua | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 nvim/lua/plugins/tabline.lua (limited to 'nvim/lua/plugins/tabline.lua') diff --git a/nvim/lua/plugins/tabline.lua b/nvim/lua/plugins/tabline.lua deleted file mode 100644 index 4e1c506..0000000 --- a/nvim/lua/plugins/tabline.lua +++ /dev/null @@ -1,22 +0,0 @@ -require("tabline").setup({ - -- Defaults configuration options - enable = true, - options = { - -- If lualine is installed tabline will use separators configured in lualine by default. - -- These options can be used to override those settings. - section_separators = { "", "" }, - component_separators = { "", "" }, - max_bufferline_percent = 66, -- set to nil by default, and it uses vim.o.columns * 2/3 - show_tabs_always = true, -- this shows tabs only when there are more than one tab or if the first tab is named - show_devicons = true, -- this shows devicons in buffer section - show_bufnr = true, -- this appends [bufnr] to buffer section, - show_filename_only = false, -- shows base filename only instead of relative path in filename - modified_icon = "+", -- change the default modified icon - modified_italic = true, -- set to true by default; this determines whether the filename turns italic if modified - show_tabs_only = false, -- this shows only tabs instead of tabs + buffers - }, -}) -vim.cmd([[ - set guioptions-=e " Use showtabline in gui vim - set sessionoptions+=tabpages,globals " store tabpages and globals in session -]]) -- cgit v1.2.3