From bb63129e5136a13fab35fe3b4b958eb6c1adc7cb Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Fri, 30 Jun 2023 10:24:18 +0700 Subject: [PATCH] chore(nvim): change theme again --- data/nvim/init.lua | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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, },