diff options
| author | Nate Buttke <nate-web@riseup.net> | 2023-08-16 09:45:29 -0700 |
|---|---|---|
| committer | Nate Buttke <nate-web@riseup.net> | 2023-08-16 09:45:29 -0700 |
| commit | 249b5005e4c286fb7858438f4e6731a6d44ae6f5 (patch) | |
| tree | 4d7b309e78f3b6f914204192d5e0446d6c03a80b /after/plugin/colors.lua | |
init
Diffstat (limited to 'after/plugin/colors.lua')
| -rw-r--r-- | after/plugin/colors.lua | 6 |
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() |