feat(nvim): harpoon and not italics
This commit is contained in:
parent
90beec4d08
commit
7bc72fb21b
2 changed files with 40 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue