Files
tnvim/modules/home-manager/nvim/old/lua/plugins/lualine.lua
2023-12-21 13:05:49 +05:30

15 lines
282 B
Lua

return {
"nvim-lualine/lualine.nvim",
lazy = false,
config = function()
local theme = require("lualine.themes.carbonfox")
require("lualine").setup({
options = {
theme = theme,
globalstatus = true,
},
})
end
}