aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/after/plugin/colors.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/after/plugin/colors.lua')
-rw-r--r--nvim/after/plugin/colors.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/nvim/after/plugin/colors.lua b/nvim/after/plugin/colors.lua
deleted file mode 100644
index fe97b1b..0000000
--- a/nvim/after/plugin/colors.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-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()