Files
dotfiles/.config/nvim/lua/plugins/lualine.lua
T
2025-12-10 16:22:25 -06:00

24 lines
479 B
Lua

local function cwd()
return vim.fn.getcwd()
end
return {
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
opts = {
options = {
theme = 'everforest',
component_separators = '',
section_separators = '',
},
sections = {
lualine_a = {'mode'},
lualine_b = {'branch', 'diff', 'diagnostics'},
lualine_c = {'filename'},
lualine_x = {cwd, 'filetype'},
lualine_y = {'progress'},
lualine_z = {'location'}
},
}
}