Closed bluzky closed 1 month ago
Manage to fix this by adding this config
:custom
(lsp-bridge-elixir-lsp-server 'lexical)
(lsp-bridge-get-project-path-by-filepath #'lsp-bridge-get-project-path-by-filepath)
:config
(defun lsp-bridge-get-project-path-by-filepath (filename)
(if-let ((project (project-current filename)))
(expand-file-name (project-root project))))
You need execute "git init" in your project path.
You need execute "git init" in your project path.
My project is an existing Github repo, so I think this is not the cause.
Hi, I've just set up lsp-bridge and when I started my elixir project, it used user directory as project directory.
Here is my config
Is there any option that I missing?
Thanks