diff --git a/data/nvim/init.lua b/data/nvim/init.lua index 27b01ff..23d2e53 100644 --- a/data/nvim/init.lua +++ b/data/nvim/init.lua @@ -96,11 +96,15 @@ require("lazy").setup({ -- Colorscheme -- https://github.com/folke/tokyonight.nvim { - "folke/tokyonight.nvim", - lazy = false, - priority = 1000, + "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() - vim.api.nvim_command("colorscheme tokyonight") + require("github-theme").setup({ + -- ... + }) + + vim.cmd("colorscheme github_dark_dimmed") end, },