mirror of
https://github.com/tuxdotrs/tnvim.git
synced 2025-07-06 21:36:34 +05:30
15 lines
282 B
Lua
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
|
|
}
|