dotfiles/nvim/lua/plugins/onedark.lua

11 lines
236 B
Lua
Raw Normal View History

2026-01-18 16:03:14 +01:00
return {
"navarasu/onedark.nvim",
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require('onedark').setup {
style = 'warmer'
}
require('onedark').load()
end
}