From 1c0ac26114e249548dfdd270a07bc2336a37b6e2 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Thu, 23 May 2024 01:06:50 -0400 Subject: Massive simplification --- lua/ben/plugins/lualine.lua | 53 --------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 lua/ben/plugins/lualine.lua (limited to 'lua/ben/plugins/lualine.lua') diff --git a/lua/ben/plugins/lualine.lua b/lua/ben/plugins/lualine.lua deleted file mode 100644 index 0cecbf4..0000000 --- a/lua/ben/plugins/lualine.lua +++ /dev/null @@ -1,53 +0,0 @@ -return { - "nvim-lualine/lualine.nvim", - dependencies = "nvim-tree/nvim-web-devicons", - event = { "BufReadPre", "BufNewFile" }, - config = function() - require("lualine").setup({ - options = { - theme = "everforest", - icons_enabled = true, - -- section_separators = { left = "", right = "" }, - -- component_separators = { left = "", right = "" }, - -- component_separators = { left = "", right = "" }, - -- section_separators = { left = "", right = "" }, - section_separators = { left = "▓", right = "▓" }, - component_separators = { left = "░", right = "░" }, - globalstatus = false, - ignore_focus = {}, - always_divide_middle = true, - refresh = { - statusline = 500, - tabline = 500, - winbar = 500, - }, - }, - sections = { - lualine_a = { "mode" }, - lualine_b = { "branch" }, - lualine_c = { "filename" }, - lualine_x = { "encoding", "fileformat", "filetype" }, - lualine_y = { "progress" }, - lualine_z = { "location" }, - }, - inactive_sections = { - lualine_a = {}, - lualine_b = {}, - lualine_c = { "filename" }, - lualine_x = { "location" }, - lualine_y = {}, - lualine_z = {}, - }, - tabline = {}, - winbar = {}, - extensions = {}, - }) - -- Remove duplicate information that clutters the bottom of the screen - -- "-- INSERT --" on the left: - vim.opt.showmode = false - -- "100%" linenr/col on the right: - vim.opt.ruler = false - -- commands on the right: - vim.opt.showcmd = false - end, -} -- cgit v1.2.3