diff options
| author | ache <ache@ache.one> | 2025-05-14 18:25:56 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2025-05-14 18:25:56 +0200 |
| commit | b2ff4ae1561f86f49d8df62111c68faa8187812e (patch) | |
| tree | f30c3804b54d1c651e61b1b91e0bf35548827a16 /lua/ache/plugins/themes | |
| parent | Add a shortcut to show all shortkeys (diff) | |
Add an option to quickly disable any plugin
Diffstat (limited to 'lua/ache/plugins/themes')
| -rw-r--r-- | lua/ache/plugins/themes/ayu.lua | 1 | ||||
| -rw-r--r-- | lua/ache/plugins/themes/base46.lua | 2 | ||||
| -rw-r--r-- | lua/ache/plugins/themes/cyberdream.lua | 1 | ||||
| -rw-r--r-- | lua/ache/plugins/themes/github-nvim-theme.lua | 1 | ||||
| -rw-r--r-- | lua/ache/plugins/themes/jellybeans.lua | 1 | ||||
| -rw-r--r-- | lua/ache/plugins/themes/material.lua | 1 | ||||
| -rw-r--r-- | lua/ache/plugins/themes/night-owl.lua | 1 | ||||
| -rw-r--r-- | lua/ache/plugins/themes/nightfox.lua | 1 |
8 files changed, 8 insertions, 1 deletions
diff --git a/lua/ache/plugins/themes/ayu.lua b/lua/ache/plugins/themes/ayu.lua index a363a99..75071e5 100644 --- a/lua/ache/plugins/themes/ayu.lua +++ b/lua/ache/plugins/themes/ayu.lua @@ -1,5 +1,6 @@ return { "Shatur/neovim-ayu", + enabled = true, lazy = true, config = function() local colors = require("ayu.colors") diff --git a/lua/ache/plugins/themes/base46.lua b/lua/ache/plugins/themes/base46.lua index 60fd022..1a3f3b0 100644 --- a/lua/ache/plugins/themes/base46.lua +++ b/lua/ache/plugins/themes/base46.lua @@ -1,7 +1,7 @@ return { "https://git.ache.one/base46", + enabled = true, name = "base46", lazy = false, - enable = true, config = function() end, } diff --git a/lua/ache/plugins/themes/cyberdream.lua b/lua/ache/plugins/themes/cyberdream.lua index c9ae273..b3775e7 100644 --- a/lua/ache/plugins/themes/cyberdream.lua +++ b/lua/ache/plugins/themes/cyberdream.lua @@ -1,5 +1,6 @@ return { "scottmckendry/cyberdream.nvim", + enabled = true, lazy = true, config = function() -- This is optional diff --git a/lua/ache/plugins/themes/github-nvim-theme.lua b/lua/ache/plugins/themes/github-nvim-theme.lua index 644dd6a..60fea21 100644 --- a/lua/ache/plugins/themes/github-nvim-theme.lua +++ b/lua/ache/plugins/themes/github-nvim-theme.lua @@ -1,5 +1,6 @@ return { "projekt0n/github-nvim-theme", + enabled = true, lazy = true, config = function() require("github-theme").setup({}) diff --git a/lua/ache/plugins/themes/jellybeans.lua b/lua/ache/plugins/themes/jellybeans.lua index ad67b4e..50973a6 100644 --- a/lua/ache/plugins/themes/jellybeans.lua +++ b/lua/ache/plugins/themes/jellybeans.lua @@ -1,6 +1,7 @@ return { "metalelf0/jellybeans-nvim", lazy = true, + enabled = true, dependencies = { "rktjmp/lush.nvim" }, opts = {}, config = function() diff --git a/lua/ache/plugins/themes/material.lua b/lua/ache/plugins/themes/material.lua index 98796f2..a9e7dc8 100644 --- a/lua/ache/plugins/themes/material.lua +++ b/lua/ache/plugins/themes/material.lua @@ -1,5 +1,6 @@ return { "marko-cerovac/material.nvim", + enabled = true, lazy = true, config = function() vim.g.material_style = "palenight" diff --git a/lua/ache/plugins/themes/night-owl.lua b/lua/ache/plugins/themes/night-owl.lua index 024e6ea..44a71f7 100644 --- a/lua/ache/plugins/themes/night-owl.lua +++ b/lua/ache/plugins/themes/night-owl.lua @@ -1,5 +1,6 @@ return { "oxfist/night-owl.nvim", + enabled = true, lazy = true, config = function() -- load the colorscheme here diff --git a/lua/ache/plugins/themes/nightfox.lua b/lua/ache/plugins/themes/nightfox.lua index ae2d8cf..5b47df1 100644 --- a/lua/ache/plugins/themes/nightfox.lua +++ b/lua/ache/plugins/themes/nightfox.lua @@ -1,5 +1,6 @@ return { "EdenEast/nightfox.nvim", + enabled = true, lazy = false, -- make sure we load this during startup if it is your main colorscheme priority = 1000, -- default priority is 50 config = function() |