Created
November 17, 2024 20:43
-
-
Save dhavalsavalia/f5abe1b70432e7fe4818098fecd7de9d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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