Disable nvim-lspconfig on all platforms but Linux
This commit is contained in:
parent
78055e25b6
commit
c6a1fbd32d
2 changed files with 12 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue