From a86d4b844c55784f3f7d642ce6aa31402e985367 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Thu, 15 May 2025 21:02:22 -0700 Subject: [PATCH] Update lualine config --- nvim/lua/plugins/lualine.lua | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/nvim/lua/plugins/lualine.lua b/nvim/lua/plugins/lualine.lua index 620b2ee..86fe007 100644 --- a/nvim/lua/plugins/lualine.lua +++ b/nvim/lua/plugins/lualine.lua @@ -6,8 +6,16 @@ return { options = { --`theme=codedark, component_separators = { left = '', right = '' }, - section_separators = { left = '', right = '' } - } + section_separators = { left = '', right = '' }, + }, + sections = { + lualine_a = {'mode'}, + lualine_b = {'branch', 'diff', 'diagnostics'}, + lualine_c = {'filename'}, + lualine_x = {'encoding', 'filetype'}, + lualine_y = {'progress'}, + lualine_z = {'location'} + }, }) end }