summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/plugins/colorscheme.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua
new file mode 100644
index 0000000..5f0654d
--- /dev/null
+++ b/lua/plugins/colorscheme.lua
@@ -0,0 +1,9 @@
+-- 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