chore(nvim): change theme again

main
sudo pacman -Syu 2023-06-30 10:24:18 +07:00
parent 25ca49023f
commit bb63129e51
1 changed files with 8 additions and 4 deletions

View File

@ -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,
},