summaryrefslogtreecommitdiff
path: root/lua/ache/plugins/themes
diff options
context:
space:
mode:
authorache <ache@ache.one>2024-08-09 05:59:38 +0200
committerache <ache@ache.one>2024-08-09 05:59:38 +0200
commitd597aa01b811afa3962a0ca5127d28f2cea3cd1e (patch)
tree6be29887d943ee289b5788a312a23347f67f13b1 /lua/ache/plugins/themes
parentSet bufferline shortcuts (diff)
Support for multiple colorschemes
Diffstat (limited to 'lua/ache/plugins/themes')
-rw-r--r--lua/ache/plugins/themes/catppuccin.lua9
-rw-r--r--lua/ache/plugins/themes/cyberdream.lua4
-rw-r--r--lua/ache/plugins/themes/github-nvim-theme.lua9
-rw-r--r--lua/ache/plugins/themes/night-owl.lua9
-rw-r--r--lua/ache/plugins/themes/nightfox.lua10
-rw-r--r--lua/ache/plugins/themes/tokyonight.lua5
6 files changed, 46 insertions, 0 deletions
diff --git a/lua/ache/plugins/themes/catppuccin.lua b/lua/ache/plugins/themes/catppuccin.lua
new file mode 100644
index 0000000..502ca18
--- /dev/null
+++ b/lua/ache/plugins/themes/catppuccin.lua
@@ -0,0 +1,9 @@
+return {
+ "catppuccin/nvim",
+ name = "catppuccin",
+ lazy = true,
+ config = function()
+ require("catppuccin").setup({ background = { dark = "latte" } })
+ vim.cmd.colorscheme("catppuccin-latte")
+ end,
+}
diff --git a/lua/ache/plugins/themes/cyberdream.lua b/lua/ache/plugins/themes/cyberdream.lua
new file mode 100644
index 0000000..55f89cc
--- /dev/null
+++ b/lua/ache/plugins/themes/cyberdream.lua
@@ -0,0 +1,4 @@
+return {
+ "scottmckendry/cyberdream.nvim",
+ lazy = true,
+}
diff --git a/lua/ache/plugins/themes/github-nvim-theme.lua b/lua/ache/plugins/themes/github-nvim-theme.lua
new file mode 100644
index 0000000..644dd6a
--- /dev/null
+++ b/lua/ache/plugins/themes/github-nvim-theme.lua
@@ -0,0 +1,9 @@
+return {
+ "projekt0n/github-nvim-theme",
+ lazy = true,
+ config = function()
+ require("github-theme").setup({})
+
+ vim.cmd("colorscheme github_dark")
+ end,
+}
diff --git a/lua/ache/plugins/themes/night-owl.lua b/lua/ache/plugins/themes/night-owl.lua
new file mode 100644
index 0000000..024e6ea
--- /dev/null
+++ b/lua/ache/plugins/themes/night-owl.lua
@@ -0,0 +1,9 @@
+return {
+ "oxfist/night-owl.nvim",
+ lazy = true,
+ config = function()
+ -- load the colorscheme here
+ require("night-owl").setup()
+ vim.cmd.colorscheme("night-owl")
+ end,
+}
diff --git a/lua/ache/plugins/themes/nightfox.lua b/lua/ache/plugins/themes/nightfox.lua
new file mode 100644
index 0000000..ae2d8cf
--- /dev/null
+++ b/lua/ache/plugins/themes/nightfox.lua
@@ -0,0 +1,10 @@
+return {
+ "EdenEast/nightfox.nvim",
+ lazy = false, -- make sure we load this during startup if it is your main colorscheme
+ priority = 1000, -- default priority is 50
+ config = function()
+ -- load the colorscheme here
+ require("nightfox").setup()
+ vim.cmd.colorscheme("nightfox")
+ end,
+}
diff --git a/lua/ache/plugins/themes/tokyonight.lua b/lua/ache/plugins/themes/tokyonight.lua
new file mode 100644
index 0000000..bfc0750
--- /dev/null
+++ b/lua/ache/plugins/themes/tokyonight.lua
@@ -0,0 +1,5 @@
+return {
+ "folke/tokyonight.nvim",
+ lazy = true,
+ opts = {},
+}