Files
dotfiles/.config/nvim/lua/plugins/lualine.lua
Belal Elsabbagh 8b6f7c4467 moved to stow
2024-12-23 10:51:37 +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,
},
},
},
},
}