aboutsummaryrefslogtreecommitdiff
path: root/fnl/nvrc/colors.fnl
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-08-13 01:24:16 +0900
committersefidel <contact@sefidel.net>2023-08-13 01:24:23 +0900
commit287b7d3b79a5fb1c0e0c74eb4f8f539dcf353c85 (patch)
tree00d42e72c44430b3052ed0b34f6ec419658404f8 /fnl/nvrc/colors.fnl
parent7559586b90ca100abb607b2f0aa68beb420665b4 (diff)
downloadnvimrc-287b7d3b79a5fb1c0e0c74eb4f8f539dcf353c85.zip
feat(colors): add palette switcher
Diffstat (limited to 'fnl/nvrc/colors.fnl')
-rw-r--r--fnl/nvrc/colors.fnl5
1 files changed, 5 insertions, 0 deletions
diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl
index 70c57e3..fa341b1 100644
--- a/fnl/nvrc/colors.fnl
+++ b/fnl/nvrc/colors.fnl
@@ -16,6 +16,11 @@
(lambda colors.apply [colorscheme]
(import-macros {: highlight!} :nvrc.macro.color)
+ (vim.api.nvim_create_user_command :SwitchPalette
+ (fn [opts]
+ ((. (require :nvrc.colors) :apply) (. opts.fargs 1)))
+ {:nargs 1})
+
(setv! jellybeans_overrides {:background {:ctermbg :NONE :256ctermbg :NONE :guibg :NONE}})
(vim.cmd (.. "colorscheme " colorscheme))