Skip to content

Instantly share code, notes, and snippets.

@dhavalsavalia
Created November 17, 2024 20:43
Show Gist options
  • Save dhavalsavalia/f5abe1b70432e7fe4818098fecd7de9d to your computer and use it in GitHub Desktop.
Save dhavalsavalia/f5abe1b70432e7fe4818098fecd7de9d to your computer and use it in GitHub Desktop.
{
"loctvl842/monokai-pro.nvim",
config = function()
require("monokai-pro").setup({
filter = "spectrum",
styles = {
comment = {
italic = true
},
keyword = {
italic = true
}, -- any other keyword
type = {
italic = true
}, -- (preferred) int, long, char, etc
storageclass = {
italic = true
}, -- static, register, volatile, etc
structure = {
italic = true
}, -- struct, union, enum, etc
parameter = {
italic = true
}, -- parameter pass in function
annotation = {
italic = true
},
tag_attribute = {
italic = true
} -- attribute of tag in reactjs
},
devicons = true,
})
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment