summaryrefslogtreecommitdiff
path: root/after/plugin/colors.lua
diff options
context:
space:
mode:
Diffstat (limited to 'after/plugin/colors.lua')
-rw-r--r--after/plugin/colors.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/after/plugin/colors.lua b/after/plugin/colors.lua
deleted file mode 100644
index 7c7bd0f..0000000
--- a/after/plugin/colors.lua
+++ /dev/null
@@ -1,9 +0,0 @@
-function ColorMyPencils(color)
- color = color or 'wal'
- vim.cmd.colorscheme(color)
- vim.api.nvim_set_hl(0, "Normal", { bg = 'none'})
- vim.api.nvim_set_hl(0, "NormalFloat", { bg = 'none'})
- vim.api.nvim_set_hl(0, "EndOfBuffer", { bg = 'none'})
-end
-
-ColorMyPencils()