🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(config/ivy/config/lsp): enable configured servers

robin 21b1e00b 26fdbbc5

+9
+9
config/lua/ivy/config/lsp.lua
··· 44 44 45 45 ---@diagnostic disable-next-line: param-type-mismatch 46 46 vim.iter(pairs(servers)):each(vim.lsp.config) 47 + 48 + local lsp_names = vim 49 + .iter(ipairs(vim.api.nvim_get_runtime_file("lsp/*.lua", true))) 50 + :map(function(_, filepath) 51 + local name = vim.fs.basename(filepath):match("([^.]+)%.lua") 52 + return name ~= "*" and name or nil 53 + end) 54 + :totable() 55 + vim.lsp.enable(lsp_names) 47 56 end, 48 57 }