feat(nvim): disable some plugins: flash, bufferline and neotree

This commit is contained in:
Sergio Laín 2025-08-27 13:23:35 +02:00
parent cfbbdc471b
commit c5b7baf93a
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438
5 changed files with 5 additions and 18 deletions

View file

@ -63,5 +63,5 @@
"vim-wakatime": { "branch": "master", "commit": "3403495670f0ee08887401a28f8430dc4ac67429" },
"which-key.nvim": { "branch": "main", "commit": "370ec46f710e058c9c1646273e6b225acf47cbed" },
"yanky.nvim": { "branch": "main", "commit": "04775cc6e10ef038c397c407bc17f00a2f52b378" },
"yazi.nvim": { "branch": "main", "commit": "30ce4d8464dfa51b2104d1a5505ecaab880af3db" }
"yazi.nvim": { "branch": "main", "commit": "e9ebb6826e646abd8948a1252685eeb649039ebd" }
}

View file

@ -2,7 +2,6 @@
"extras": [
"lazyvim.plugins.extras.coding.mini-surround",
"lazyvim.plugins.extras.editor.dial",
"lazyvim.plugins.extras.editor.refactoring",
"lazyvim.plugins.extras.formatting.prettier",
"lazyvim.plugins.extras.test.core",
"lazyvim.plugins.extras.ui.treesitter-context",
@ -12,11 +11,11 @@
"plugins.extras.coding.yanky-extended",
"plugins.extras.dap.core-extended",
"plugins.extras.editor.docs.obsidian",
"plugins.extras.editor.flash-extended",
"plugins.extras.editor.git.diffview",
"plugins.extras.editor.gitsigns-extended",
"plugins.extras.editor.marks.grapple",
"plugins.extras.editor.suda",
"plugins.extras.editor.treesitter-extended",
"plugins.extras.editor.trouble-extended",
"plugins.extras.lang.docker-extended",
"plugins.extras.lang.fish",
@ -28,7 +27,6 @@
"plugins.extras.linting.eslint-extended",
"plugins.extras.lsp.lspconfig-extended",
"plugins.extras.lsp.mason-extended",
"plugins.extras.ui.bufferline-extended",
"plugins.extras.ui.colorschemes.catppuccin",
"plugins.extras.ui.edgy-extended",
"plugins.extras.ui.highlight-colors",

View file

@ -1,16 +1,7 @@
-- Delete this condition if you want to execute the file
if true then
return {}
end
-- Example of disabling some plugins. Add yours
local disabled = {
{
"akinsho/bufferline.nvim",
},
{
"nvim-lualine/lualine.nvim",
},
{ "akinsho/bufferline.nvim" },
{ "nvim-neo-tree/neo-tree.nvim" },
{ "folke/flash.nvim" },
}
for i, plugin in ipairs(disabled) do

View file

@ -12,7 +12,6 @@ table.insert(keys, { prefix .. ">", "<cmd>BufferLineMoveNext<cr>", desc = "Move
return {
"akinsho/bufferline.nvim",
enabled = false,
keys = keys,
opts = {
options = {

View file

@ -1,7 +1,6 @@
return {
"folke/which-key.nvim",
opts = {
-- preset = "classic",
icons = {
group = "",
},