if not vim.g.vscode then return {} end local enabled = { "flit.nvim", "lazy.nvim", "leap.nvim", "mini.ai", "mini.comment", "mini.pairs", "mini.surround", "nvim-treesitter", "nvim-treesitter-textobjects", "nvim-ts-context-commentstring", "vim-repeat", "LazyVim", } local Config = require("lazy.core.config") Config.options.checker.enabled = false Config.options.change_detection.enabled = false Config.options.defaults.cond = function(plugin) return vim.tbl_contains(enabled, plugin.name) or plugin.vscode end -- Add some vscode specific keymaps vim.api.nvim_create_autocmd("User", { pattern = "LazyVimKeymaps", callback = function() vim.keymap.set("n", "", "Find") vim.keymap.set("n", "/", [[call VSCodeNotify('workbench.action.findInFiles')]]) vim.keymap.set("n", "ss", [[call VSCodeNotify('workbench.action.gotoSymbol')]]) end, }) return { { "LazyVim/LazyVim", config = function(_, opts) opts = opts or {} -- disable the colorscheme opts.colorscheme = function() end require("lazyvim").setup(opts) end, }, { "nvim-treesitter/nvim-treesitter", opts = { highlight = { enable = false } }, }, }