diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/ache/plugins/themes/ayu.lua | 7 | ||||
| -rw-r--r-- | lua/ache/plugins/themes/jellybeans.lua | 10 | ||||
| -rw-r--r-- | lua/ache/plugins/themes/pastelnight.lua | 5 |
3 files changed, 22 insertions, 0 deletions
diff --git a/lua/ache/plugins/themes/ayu.lua b/lua/ache/plugins/themes/ayu.lua new file mode 100644 index 0000000..2011260 --- /dev/null +++ b/lua/ache/plugins/themes/ayu.lua @@ -0,0 +1,7 @@ +return { + "Shatur/neovim-ayu", + lazy = true, + config = function() + vim.cmd.colorscheme("ayu-mirage") + end, +} diff --git a/lua/ache/plugins/themes/jellybeans.lua b/lua/ache/plugins/themes/jellybeans.lua new file mode 100644 index 0000000..ad67b4e --- /dev/null +++ b/lua/ache/plugins/themes/jellybeans.lua @@ -0,0 +1,10 @@ +return { + "metalelf0/jellybeans-nvim", + lazy = true, + dependencies = { "rktjmp/lush.nvim" }, + opts = {}, + config = function() + vim.o.termguicolors = true + vim.cmd.colorscheme("jellybeans") + end, +} diff --git a/lua/ache/plugins/themes/pastelnight.lua b/lua/ache/plugins/themes/pastelnight.lua new file mode 100644 index 0000000..54dff5c --- /dev/null +++ b/lua/ache/plugins/themes/pastelnight.lua @@ -0,0 +1,5 @@ +return { + "pauchiner/pastelnight.nvim", + lazy = true, + opts = {}, +} |