Skip to content

Commit

Permalink
Some renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
RhydianJenkins committed Mar 1, 2024
1 parent 11444b0 commit 413d6ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions nvim/after/plugin/lsp_test.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
local util = require("lspconfig.util")
local configs = require("lspconfig.configs")

if not configs.symfony_lsp then
configs.symfony_lsp = {
if not configs.symfony_ls then
configs.symfony_ls = {
default_config = {
cmd = { "symfony_lsp" },
filetypes = { "php", "yml", "yaml" },
cmd = { "symfony_ls" },
filetypes = { "lua", "php", "yml", "yaml" },
root_dir = util.find_git_ancestor,
},
}
Expand Down
2 changes: 1 addition & 1 deletion nvim/after/plugin/lspconfig.lua
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ local function on_attach_with_format(client, bufnr)
return on_attach(client, bufnr)
end

lspconfig.symfony_lsp.setup({
lspconfig.symfony_ls.setup({
on_attach = on_attach,
})

Expand Down

0 comments on commit 413d6ff

Please sign in to comment.