summaryrefslogtreecommitdiff
path: root/lua/plugins/lualine.lua
diff options
context:
space:
mode:
authorBenjamin Chaussé <Benjamin.Chausse@goto.com>2024-07-10 14:59:42 -0400
committerBenjamin Chaussé <Benjamin.Chausse@goto.com>2024-07-10 14:59:42 -0400
commit07abc0343bf1f6e2b93b24e3af8655ce81dd2b02 (patch)
tree1c286fed1d14d3de9f3773057329b20ff07d0a26 /lua/plugins/lualine.lua
parentde2aaa7fd5a90a81de8d216232bb39830ff6041d (diff)
Stylua formatting + conform.nvim
Diffstat (limited to 'lua/plugins/lualine.lua')
-rw-r--r--lua/plugins/lualine.lua94
1 files changed, 47 insertions, 47 deletions
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,
}