summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/lualine.lua
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2024-05-23 01:06:50 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2024-05-23 01:06:50 -0400
commit1c0ac26114e249548dfdd270a07bc2336a37b6e2 (patch)
tree67a9a69b8de26b6ecb9008a0d992e865d1fc12c2 /lua/ben/plugins/lualine.lua
parent796db1e83d41d25a277c46c968a168702c1f3eb8 (diff)
Massive simplification
Diffstat (limited to 'lua/ben/plugins/lualine.lua')
-rw-r--r--lua/ben/plugins/lualine.lua53
1 files changed, 0 insertions, 53 deletions
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,
-}