diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2024-01-29 22:25:32 +0100 |
---|---|---|
committer | Damjan 9000 <damjan.9000@gmail.com> | 2024-01-29 22:25:32 +0100 |
commit | cc0baad55894c07121752982867a9b43f4c83183 (patch) | |
tree | b863c7646cf5391d3590df052b641bd59ff11b01 | |
parent | 460978b8a381bac73271007eca72d40d8f397d53 (diff) | |
parent | b11581491671ed49b1dfdb1ea777932ade7ff2e5 (diff) |
Merge 'upstream/master' Add Onedark Style
-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, }, |