feat: disable unused colorschemes

This commit is contained in:
Michel 2023-10-18 11:06:33 +02:00
parent 401e17d5e9
commit 2132d4b5ef
4 changed files with 6 additions and 8 deletions

View File

@ -2,7 +2,6 @@
"LazyVim": { "branch": "main", "commit": "e26a127185e9dc86d1d655d17fa0a5e765a8a040" },
"LuaSnip": { "branch": "master", "commit": "0df29db3543837f8b41597f2640397c5ec792b7b" },
"bufferline.nvim": { "branch": "main", "commit": "357cc8f8eeb64702e6fcf2995e3b9becee99a5d3" },
"catppuccin": { "branch": "main", "commit": "f03cbfb65664e55451d91616242bd1c63919da10" },
"clangd_extensions.nvim": { "branch": "main", "commit": "34c8eaa12be192e83cd4865ce2375e9f53e728f2" },
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
"cmp-nvim-lsp": { "branch": "main", "commit": "44b16d11215dce86f253ce0c30949813c0a90765" },
@ -49,7 +48,6 @@
"telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" },
"telescope.nvim": { "branch": "master", "commit": "74ce793a60759e3db0d265174f137fb627430355" },
"todo-comments.nvim": { "branch": "main", "commit": "3094ead8edfa9040de2421deddec55d3762f64d1" },
"tokyonight.nvim": { "branch": "main", "commit": "1e5492bb99d461a5a0d020a119fc76d75945af84" },
"trouble.nvim": { "branch": "main", "commit": "02219b557d4726a789be58c5d6bd6e139c46a9fe" },
"vim-illuminate": { "branch": "master", "commit": "3bd2ab64b5d63b29e05691e624927e5ebbf0fb86" },
"vim-moonfly-colors": { "branch": "master", "commit": "5d7aff3545cd3f365215bf86a3f188b65ab9b90c" },

View File

@ -26,7 +26,7 @@ require("lazy").setup({
version = false, -- always use the latest git commit
-- version = "*", -- try installing the latest stable version for plugins that support semver
},
install = { colorscheme = { "tokyonight", "habamax" } },
-- install = { colorscheme = { "tokyonight", "habamax" } },
checker = { enabled = true }, -- automatically check for plugin updates
performance = {
rtp = {

View File

@ -10,11 +10,6 @@ return {
},
},
{
"lukas-reineke/indent-blankline.nvim",
enabled = false,
},
{
"b0o/incline.nvim",
event = "BufReadPre",

5
lua/plugins/disabled.lua Normal file
View File

@ -0,0 +1,5 @@
return {
{ "catppuccin", enabled = false },
{ "folke/tokyonight.nvim", enabled = false },
{ "lukas-reineke/indent-blankline.nvim", enabled = false },
}