From 04a331f3ce11f9ed915b0892d9600381c48b34b5 Mon Sep 17 00:00:00 2001 From: Nick Burt Date: Mon, 5 Feb 2024 12:13:36 -0600 Subject: [PATCH] update lualine configuration --- lua/plugins/lualine.lua | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/lua/plugins/lualine.lua b/lua/plugins/lualine.lua index 849b1895..ef96d38b 100644 --- a/lua/plugins/lualine.lua +++ b/lua/plugins/lualine.lua @@ -1,13 +1,16 @@ --- Informational line at bottom of screen +-- Informational status line at bottom of screen return { - -- Set lualine as statusline - 'nvim-lualine/lualine.nvim', - opts = { - options = { - icons_enabled = false, - theme = 'onedark', + 'nvim-lualine/lualine.nvim', + opts = { + options = { + theme = 'catppuccin', component_separators = '|', section_separators = '', + }, + sections = { + lualine_c = { + { "filename", path = 1 } + } } } }