Skip to content

Commit e6466f7

Browse files
feohbeammedown
authored andcommitted
Propsed fix for init.lua warnings as per nvim-lua#1305 (comment) (nvim-lua#1354)
1 parent d7cbefa commit e6466f7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

init.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -729,8 +729,9 @@ require('lazy').setup({
729729
require('mason-tool-installer').setup { ensure_installed = ensure_installed }
730730

731731
require('mason-lspconfig').setup {
732-
automatic_installation = true,
733-
handlers = {
732+
ensure_installed = {}, -- explicitly set to an empty table (Kickstart populates installs via mason-tool-installer)
733+
automatic_installation = false,
734+
handlers = {
734735
function(server_name)
735736
local server = servers[server_name] or {}
736737
-- This handles overriding only values explicitly passed

0 commit comments

Comments
 (0)