diff options
| author | Chris Patti <feoh@feoh.org> | 2025-02-19 09:40:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-19 09:40:16 -0500 |
| commit | 0b85c2a0e62d21a970347ef4f9be3caa385222a0 (patch) | |
| tree | ec7ad0c00c0deee4964d8533a75b67e18445e375 /nvim | |
| parent | 0675494b59c58cf51f14034fa1dab5a1a2a5b582 (diff) | |
| download | dots-0b85c2a0e62d21a970347ef4f9be3caa385222a0.tar.gz | |
Propsed fix for init.lua warnings as per https://github.com/nvim-lua/kickstart.nvim/issues/1305#issuecomment-2657770325 (#1354)
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 40c8f59..5cac3d1 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -707,6 +707,8 @@ require('lazy').setup({ require('mason-tool-installer').setup { ensure_installed = ensure_installed } require('mason-lspconfig').setup { + ensure_installed = {}, -- explicitly set to an empty table (Kickstart populates installs via mason-tool-installer) + automatic_installation = false, handlers = { function(server_name) local server = servers[server_name] or {} |