mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2026-01-29 01:13:01 +01:00
11 lines
236 B
Lua
11 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
|
||
|
|
}
|