1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
vim.pack.add({
"https://github.com/sainnhe/sonokai",
"https://github.com/WTFox/jellybeans.nvim",
"https://github.com/projekt0n/github-nvim-theme",
"https://github.com/miikanissi/modus-themes.nvim",
})
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,
},
})
require("modus-themes").setup({
transparent = true,
line_nr_column_background = false,
sign_column_background = false,
styles = {
comments = { italic = false },
keywords = { italic = false },
functions = {},
variables = {},
},
})
vim.cmd("colorscheme modus_vivendi")
|