-- Disable unused plugins and functionality. return { { -- Disable the dashboard. "folke/snacks.nvim", opts = function(_, opts) opts.dashboard = { enabled = false } end, }, { -- Disable the bufferline. "bufferline.nvim", enabled = false, }, { -- Disable inline hints by default. "neovim/nvim-lspconfig", opts = { inlay_hints = { enabled = false }, }, }, { "hrsh7th/nvim-cmp", opts = function(_, opts) -- Disable autocomplete on enter. local cmp = require("cmp") opts.mapping = vim.tbl_deep_extend("force", opts.mapping, { [""] = cmp.config.disable, }) end, }, }