summaryrefslogtreecommitdiff
path: root/dot-config/nvim/plugin/colorscheme.lua
blob: 8eb524b1342121ae8be43bb0e8bac84e7c2b1913 (plain)
1
2
3
4
5
6
7
8
9
10
11
vim.pack.add({
	"https://github.com/projekt0n/github-nvim-theme",
})

require("github-theme").setup({
	options = {
		transparent = true,
	},
})

vim.cmd("colorscheme github_dark_default")