mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
21 lines
553 B
Lua
21 lines
553 B
Lua
|
|
require("monokai-pro").setup({
|
||
|
|
transparent_background = true,
|
||
|
|
devicons = true,
|
||
|
|
terminal_colors = true,
|
||
|
|
styles = {
|
||
|
|
comment = { italic = true },
|
||
|
|
keyword = { italic = true },
|
||
|
|
type = { italic = true },
|
||
|
|
storageclass = { italic = true },
|
||
|
|
structure = { italic = true },
|
||
|
|
parameter = { italic = true },
|
||
|
|
annotation = { italic = true },
|
||
|
|
tag_attribute = { italic = true },
|
||
|
|
},
|
||
|
|
filter = "spectrum",
|
||
|
|
day_night = { enable = false },
|
||
|
|
background_clear = { "toggleterm", "telescope", "notify", "nvim-tree" },
|
||
|
|
})
|
||
|
|
|
||
|
|
vim.cmd("colorscheme monokai-pro")
|