mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2026-06-14 22:08:38 +00:00
10 lines
231 B
Lua
10 lines
231 B
Lua
local has_lsp, lsp = pcall(require, 'vim.lsp')
|
|
if not (has_lsp and lsp.config ~= nil and vim.g.vim_ide == 2) then return end
|
|
|
|
require('dotfiles.lsp_ignition').enable({
|
|
'php',
|
|
'biome',
|
|
'vimls',
|
|
'bashls',
|
|
'mdx_analyzer'
|
|
})
|