From 1796a835f81cecb0209db45e6edcdbba23aa708e Mon Sep 17 00:00:00 2001 From: calcu1on Date: Wed, 21 May 2025 08:28:11 -0400 Subject: [PATCH] Removing drupal lsp from init.lua as its in its own folder now. --- init.lua | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/init.lua b/init.lua index f0f6afb..5d62f2c 100644 --- a/init.lua +++ b/init.lua @@ -76,18 +76,3 @@ vim.keymap.set('n', 'db', function() local widgets = require('dap.ui.widgets') widgets.centered_float(widgets.scopes) end) - --- local lspconfig = require 'lspconfig' --- local configs = require 'lspconfig.configs' --- if not configs.drupal then --- configs.drupal = { --- default_config = { --- cmd = {'drupal-lsp'}, --- filetypes = {'php', 'module', 'inc', 'theme'}, --- root_dir = function(fname) --- return lspconfig.util.root_pattern('composer.json', '.git')(fname) --- end --- }; --- } --- end --- lspconfig.drupal.setup{ autostart = true }