dotfiles/nvim/lua/plugins/onedark.lua
Felix Buehler 9a319d8bf7
Some checks are pending
Build / Lint Code Base (push) Waiting to run
CI / build (push) Waiting to run
nvim: init
2026-01-18 16:03:14 +01:00

10 lines
236 B
Lua

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
}