diff --git a/lua/custom/plugins/lualine.lua b/lua/custom/plugins/lualine.lua index de7aeb8d..9bcb79e9 100644 --- a/lua/custom/plugins/lualine.lua +++ b/lua/custom/plugins/lualine.lua @@ -2,6 +2,12 @@ return { 'nvim-lualine/lualine.nvim', dependencies = { 'nvim-tree/nvim-web-devicons' }, config = function() - require('lualine').setup {} + require('lualine').setup { + sections = { + lualine_c = { + { 'filename', path = 1 }, -- This line configures the filename to show the relative path + }, + }, + } end, }