-- -- This file adds local changes to the corresponding file and plugins in LazyVim -- return { -- see langs/ for individual language config -- lspconfig { -- https://github.com/neovim/nvim-lspconfig "neovim/nvim-lspconfig", opts = function() local keys = require("lazyvim.plugins.lsp.keymaps").get() -- add or change a keymap --keys[#keys + 1] = { "K", "echo 'hello'" } -- disable a keymap keys[#keys + 1] = { "K", false } end, }, { -- https://github.com/williamboman/mason.nvim "williamboman/mason.nvim", ensure_installed = { -- "stylua", -- "shfmt", -- "flake8", }, }, }