diff options
Diffstat (limited to 'lua')
-rw-r--r-- | lua/lazy-plugins.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lua/lazy-plugins.lua b/lua/lazy-plugins.lua index f4c392f..3ac479b 100644 --- a/lua/lazy-plugins.lua +++ b/lua/lazy-plugins.lua @@ -131,8 +131,13 @@ require('lazy').setup({ -- Theme inspired by Atom 'navarasu/onedark.nvim', priority = 1000, + lazy = false, config = function() - vim.cmd.colorscheme 'onedark' + require('onedark').setup { + -- Set a style preset. 'dark' is default. + style = 'dark', -- dark, darker, cool, deep, warm, warmer, light + } + require('onedark').load() end, }, |