dotfiles/_unused/astronvim/lua/user/plugins/lualine.lua

24 lines
552 B
Lua
Raw Normal View History

2023-04-16 00:10:33 +02:00
return {
"nvim-lualine/lualine.nvim",
2023-04-16 00:26:48 +02:00
event = "VeryLazy",
2023-04-16 00:10:33 +02:00
opts = {
options = {
component_separators = '',
icons_enabled = true,
section_separators = '',
2023-10-09 23:17:39 +02:00
theme = "powerline",
2023-04-16 00:10:33 +02:00
},
sections = {
lualine_a = { "mode" },
lualine_b = { { "filename", file_status = true, path = 1 } },
2023-10-09 15:15:42 +02:00
lualine_c = { { "branch", icon = "" } },
2023-04-16 00:10:33 +02:00
lualine_x = { "filetype" },
lualine_y = { "progress" },
lualine_z = { "location" },
},
tabline = {
lualine_a = { "buffers" },
},
},
}