Skip to content
Discussion options

You must be logged in to vote
-- lua/plugins/rose-pine.lua
return {
	"rose-pine/neovim",
	name = "rose-pine",
	config = function()
		require("rose-pine").setup({
			disable_italics = true,
			highlight_groups = {
				["@keyword.conditional"] = { italic = true }, -- if, else
				["@keyword.repeat"] = { italic = true }, -- for, while
				["@keyword.return"] = { italic = true }, -- return
				["@keyword.type"] = {
					italic = true,
					fg = "#eb6f92", -- custom color for 'auto', 'const', etc.
				},
				-- ["@type.builtin"] = { italic = true }, -- int, float, etc.
				["@keyword.operator"] = { italic = true }, -- new, delete, etc.
				["@preproc"] = { italic = true }, -- #define, #include, etc.
		})

		vim.cmd("colors…

Replies: 1 comment 6 replies

Comment options

You must be logged in to vote
6 replies
@basava70
Comment options

@subframe7536
Comment options

@basava70
Comment options

@basava70
Comment options

Answer selected by basava70
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #479 on May 02, 2025 01:20.