working rose-pine colorscheme
This commit is contained in:
parent
6e6f8f773a
commit
b43fa87508
@ -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
|
||||||
|
|
||||||
|
16
lua/plugins/colorscheme.lua
Normal file
16
lua/plugins/colorscheme.lua
Normal 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,
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user