summaryrefslogtreecommitdiff
path: root/lua/plugins/colorscheme.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-11 22:34:06 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-11 22:34:06 +0100
commit8aafe947f476462e0aae7d0f473bec0fbdcaaa60 (patch)
treefa6910e9ed35bd16f598381520020a46f8403e15 /lua/plugins/colorscheme.lua
parent7ab7a3cf61548c697db6547aaea02dc0aec47c45 (diff)
Move colorscheme config to config
Diffstat (limited to 'lua/plugins/colorscheme.lua')
-rw-r--r--lua/plugins/colorscheme.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua
deleted file mode 100644
index 5f0654d..0000000
--- a/lua/plugins/colorscheme.lua
+++ /dev/null
@@ -1,9 +0,0 @@
--- Neovim colorscheme.
-
-local colorscheme = "default"
-
-local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
-if not status_ok then
- vim.notify("colorscheme " .. colorscheme .. " not found!")
- return
-end