From 07abc0343bf1f6e2b93b24e3af8655ce81dd2b02 Mon Sep 17 00:00:00 2001 From: Benjamin Chaussé Date: Wed, 10 Jul 2024 14:59:42 -0400 Subject: Stylua formatting + conform.nvim --- lua/plugins/lualine.lua | 94 ++++++++++++++++++++++++------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) (limited to 'lua/plugins/lualine.lua') diff --git a/lua/plugins/lualine.lua b/lua/plugins/lualine.lua index e41d998..445f056 100644 --- a/lua/plugins/lualine.lua +++ b/lua/plugins/lualine.lua @@ -1,49 +1,49 @@ return { - "nvim-lualine/lualine.nvim", - dependencies = "nvim-tree/nvim-web-devicons", - event = { "BufReadPre", "BufNewFile" }, - config = function() - require("lualine").setup({ - options = { - theme = "no-clown-fiesta", - icons_enabled = true, - 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 = { "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 = {'fugitive'}, - }) - -- 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, + "nvim-lualine/lualine.nvim", + dependencies = "nvim-tree/nvim-web-devicons", + event = { "BufReadPre", "BufNewFile" }, + config = function() + require("lualine").setup({ + options = { + theme = "no-clown-fiesta", + icons_enabled = true, + 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 = { "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 = { "fugitive" }, + }) + -- 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