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.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/after/plugin/colors.lua b/after/plugin/colors.lua
new file mode 100644
index 0000000..b63edb4
--- /dev/null
+++ b/after/plugin/colors.lua
@@ -0,0 +1,6 @@
+function Color(color)
+ color = color or "rose-pine"
+ vim.cmd.colorscheme(color)
+end
+
+Color()