blob: 48ca70b396580efcd53771701d41288bb6361f6b (
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_high_contrast")
|