feat(nvim): harpoon and not italics

This commit is contained in:
Florian Schmitt 2024-04-13 19:58:22 +03:00
parent 90beec4d08
commit 7bc72fb21b
2 changed files with 40 additions and 2 deletions

View file

@ -1,6 +1,29 @@
function ColorMyPencils(color)
color = color or "rose-pine"
vim.cmd.colorscheme(color)
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end
return {
-- theme Rosé Pine
{ "rose-pine/neovim", name = "rose-pine" },
{
"rose-pine/neovim",
name = "rose-pine",
config = function()
require("rose-pine").setup({
disable_background = true,
styles = {
italic = false,
},
})
vim.cmd("colorscheme rose-pine")
ColorMyPencils()
end,
},
-- Configure LazyVim to load theme
{