CRLF -> LF

This commit is contained in:
2024-12-03 20:36:44 +01:00
parent 20e2dce754
commit ac570f7599
19 changed files with 145 additions and 166 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,
}
}