dots/modules/hosts/common/files/nvim/lua/plugins/lualine.lua
Gene Liverman f95cc09e13 Restructure Darwin configuration
So far, this is just based on mightymac. The other devices will be
updated soon.
2024-12-07 23:18:12 -05:00

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,
}