summaryrefslogtreecommitdiff
path: root/dot-config/nvim/plugin/colorscheme.lua
blob: 1897468ad7070c5f859a10ff9b0dd3761538c853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
vim.pack.add({
	"https://github.com/sainnhe/sonokai",
	"https://github.com/WTFox/jellybeans.nvim",
	"https://github.com/projekt0n/github-nvim-theme",
})

vim.g.sonokai_transparent_background = 2
vim.g.sonokai_float_style = "bright"

require("jellybeans").setup({
	transparent = true,
	italics = false,
	bold = false,
	flat_ui = true, -- toggles "flat UI" for pickers
})

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

vim.cmd("colorscheme github_dark")