Files
dotfiles/nvim/lua/plugins/lualine.lua
Belal Elsabbagh 98b7825e09 update
2024-12-18 22:06:31 +02:00

23 lines
448 B
Lua

return {
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
opts = {
options = {
section_separators = { left = '', right = '' },
component_separators = { left = '|', right = '|' },
theme = vim.g.colors_name,
refresh = {
statusline = 1000,
},
},
sections = {
lualine_c = {
{
'filename',
path = 1,
},
},
},
},
}