Improved neovim config

This commit is contained in:
2023-08-21 00:09:00 +02:00
parent d07a82fff2
commit 2ad93d9338
15 changed files with 140 additions and 53 deletions

@ -1,7 +1,14 @@
return {
"navarasu/onedark.nvim",
event = "VeryLazy",
config = function()
require('onedark').load()
lazy = false,
priority = 1000,
opts = {
style = "dark",
transparent = false,
},
config = function(_, opts)
local theme = require("onedark")
theme.setup(opts)
theme.load()
end,
}