feat: add more themes
This commit is contained in:
parent
e4808488e7
commit
e1f34bf549
4 changed files with 59 additions and 6 deletions
15
after/plugin/colors.lua
Normal file
15
after/plugin/colors.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
require('rose-pine').setup {
|
||||
disable_background = true,
|
||||
}
|
||||
|
||||
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
|
||||
|
||||
ColorMyPencils()
|
||||
|
||||
-- vim.cmd [[ ThematicRandom ]]
|
||||
Loading…
Add table
Add a link
Reference in a new issue