21 lines
542 B
Lua
21 lines
542 B
Lua
return {
|
|
{
|
|
"oxfist/night-owl.nvim",
|
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
|
priority = 1000, -- make sure to load this before all the other start plugins
|
|
config = function()
|
|
-- load the colorscheme here
|
|
require("night-owl").setup()
|
|
vim.cmd.colorscheme("night-owl")
|
|
end,
|
|
},
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
lazy = false,
|
|
config = function()
|
|
require("lualine").setup()
|
|
end,
|
|
}
|
|
}
|