base version of conversion.

This commit is contained in:
2024-12-03 20:24:06 +01:00
parent 20e2dce754
commit 3fd7015da8
19 changed files with 181 additions and 202 deletions
+20
View File
@@ -0,0 +1,20 @@
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,
}
}