working rose-pine colorscheme

This commit is contained in:
Joost Agterhoek 2025-07-02 16:12:32 +02:00
parent 6e6f8f773a
commit b43fa87508
2 changed files with 18 additions and 1 deletions

View File

@ -1,6 +1,8 @@
vim.o.number = true vim.o.number = true
vim.o.relativenumber = true vim.o.relativenumber = true
vim.opt.termguicolors = true
vim.o.mouse = "a" vim.o.mouse = "a"
vim.schedule(function() vim.schedule(function()
@ -36,4 +38,3 @@ vim.o.scrolloff = 10
-- instead raise a dialog asking if you wish to save the current file(s) -- instead raise a dialog asking if you wish to save the current file(s)
-- See `:help 'confirm'` -- See `:help 'confirm'`
vim.o.confirm = true vim.o.confirm = true

View File

@ -0,0 +1,16 @@
return {
"rose-pine/neovim",
priority = 1000,
init = function()
vim.cmd.colorscheme("rose-pine-moon")
end,
config = function()
require("rose-pine").setup({
disable_italics = true,
highlight_groups = {
Comment = { italic = true },
["@markup.italic"] = { italic = true },
},
})
end,
}