dotfiles/.config/nvim/lua/plugins/lualine.lua
Patrick Wadström bc2f2a0e1c
Latest from work
2023-02-11 19:51:08 +01:00

10 lines
150 B
Lua

local setup = function()
require('lualine').setup({
options = {
theme = 'nord'
}
})
end
return { setup = setup }