Skip to content

Commit 45313dc

Browse files
authored
Update colors.lua
1 parent 666eb00 commit 45313dc

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

‎after/plugin/colors.lua‎

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
require('rose-pine').setup({
2-
disable_background=true
3-
})
1+
-- color scheme and transparent background
2+
--require("tokyonight.colors").setup({
3+
-- disable_background = false
4+
--})
45

5-
functionColorMyPencils(color)
6-
color=coloror"rose-pine"
6+
functionColorMyPencils(color)
7+
color=coloror"tokyonight"
78
vim.cmd.colorscheme(color)
89

9-
vim.api.nvim_set_hl(0, "Normal",{bg="none" })
10-
vim.api.nvim_set_hl(0, "NormalFloat",{bg="none" })
1110

11+
-- uncomment the following lines to enable transparent background.
12+
--vim.api.nvim_set_hl(0, "Normal",{bg = "none"})
13+
--vim.api.nvim_set_hl(0, "NormalFloat",{bg = "none"})
1214
end
1315

1416
ColorMyPencils()
17+

0 commit comments

Comments
(0)