Disable nvim-lspconfig on all platforms but Linux

This commit is contained in:
Imbus 2024-08-18 16:28:10 +02:00
parent 78055e25b6
commit c6a1fbd32d
2 changed files with 12 additions and 0 deletions

View file

@ -1,5 +1,8 @@
return { -- LSP Configuration & Plugins
'neovim/nvim-lspconfig',
cond = function()
return vim.g.sysname == 'Linux' -- Temporary fix for FreeBSD
end,
dependencies = {
-- Automatically install LSPs and related tools to stdpath for Neovim
{ 'williamboman/mason.nvim', config = true }, -- NOTE: Must be loaded before dependants