diff --git a/.gitignore b/.gitignore index d699e1d6..ea93edad 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ tags test.sh .luarc.json nvim +lazy-lock.json diff --git a/init.lua b/init.lua index 6c6ae020..2d551721 100644 --- a/init.lua +++ b/init.lua @@ -190,16 +190,12 @@ require('lazy').setup({ }, { - -- Theme inspired by Atom - 'navarasu/onedark.nvim', - priority = 1000, - lazy = false, + -- Theme + 'projekt0n/github-nvim-theme', + lazy = false, -- make sure we load this during startup if it is your main colorscheme + priority = 1000, -- make sure to load this before all the other start plugins config = function() - require('onedark').setup { - -- Set a style preset. 'dark' is default. - style = 'dark', -- dark, darker, cool, deep, warm, warmer, light - } - require('onedark').load() + vim.cmd('colorscheme github_dark_dimmed') end, },