We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666eb00 commit 45313dcCopy full SHA for 45313dc
after/plugin/colors.lua
@@ -1,14 +1,17 @@
1
-require('rose-pine').setup({
2
-disable_background=true
3
-})
+-- color scheme and transparent background
+--require("tokyonight.colors").setup({
+-- disable_background = false
4
+--})
5
-functionColorMyPencils(color)
6
-color=coloror"rose-pine"
+functionColorMyPencils(color)
7
+color=coloror"tokyonight"
8
vim.cmd.colorscheme(color)
9
-vim.api.nvim_set_hl(0, "Normal",{bg="none" })
10
-vim.api.nvim_set_hl(0, "NormalFloat",{bg="none" })
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"})
14
end
15
16
ColorMyPencils()
17
+
0 commit comments