blob: 18c2ac06907cb1eb76ff0117f328fd8cd3943a10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
vim.pack.add({
"https://github.com/miikanissi/modus-themes.nvim",
})
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")
|