summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorache <ache@ache.one>2024-09-18 14:41:24 +0200
committerache <ache@ache.one>2024-09-18 14:41:24 +0200
commit96e8c32ada7c36b27e911cc0f1446fdbdde0063e (patch)
tree072b361e6ff240a1bfaa14a808c491b8df3e7bb5 /lua
parentClean up plugins (diff)
Add some themes
Diffstat (limited to 'lua')
-rw-r--r--lua/ache/plugins/themes/ayu.lua7
-rw-r--r--lua/ache/plugins/themes/jellybeans.lua10
-rw-r--r--lua/ache/plugins/themes/pastelnight.lua5
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 = {},
+}