mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 17:37:43 -04:00
So far, this is just based on mightymac. The other devices will be updated soon.
19 lines
333 B
Lua
19 lines
333 B
Lua
return {
|
|
"nvim-lualine/lualine.nvim",
|
|
config = function()
|
|
require("lualine").setup({
|
|
options = {
|
|
icons_enabled = true,
|
|
-- theme = "dracula-nvim",
|
|
},
|
|
sections = {
|
|
lualine_a = {
|
|
{
|
|
"filename",
|
|
path = 1,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
}
|