Add style options to Onedark setup (init.lua)

This commit is contained in:
Tokarak 2024-01-20 02:15:02 +00:00
parent 2510c29d62
commit 5cbc54140f
1 changed files with 4 additions and 0 deletions

View File

@ -193,7 +193,11 @@ require('lazy').setup({
-- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
lazy = false,
config = function()
require('onedark').setup({
style = 'dark' -- dark, darker, cool, deep, warm, warmer, light
})
vim.cmd.colorscheme 'onedark'
end,
},