summaryrefslogtreecommitdiff
path: root/after/plugin/colors.lua
diff options
context:
space:
mode:
authorGravatar Matthew Wozniak <sirtomato999@gmail.com> 2023-12-29 19:39:37 -0500
committerGravatar Matthew Wozniak <sirtomato999@gmail.com> 2023-12-29 19:39:37 -0500
commit047ea7318b352692b0c2cb49590d75ea1588c148 (patch)
tree069acb3e7045025f4b6ace8752617251d4ca0a2b /after/plugin/colors.lua
parent256937593ad354a82c520b3c0968f0bb17e86768 (diff)
downloadnvim-047ea7318b352692b0c2cb49590d75ea1588c148.tar.gz
nvim-047ea7318b352692b0c2cb49590d75ea1588c148.zip
new config
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()