Add alive-lsp

This commit is contained in:
Akira Tempaku 2024-02-02 23:53:15 +09:00
parent 875be278dc
commit c3954e3384
4 changed files with 26 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
.qlot
node_modules
static/tailwind.css
.vscode/alive

20
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,20 @@
{
"editor.formatOnType": true,
"[lisp]": {
"editor.wordSeparators": "`|;:'\",()"
},
"alive.lsp.startCommand": [
"qlot",
"exec",
"ros",
"run",
"--eval",
"(ql:quickload '(:cl-json :bordeaux-threads :usocket :flexi-streams))",
"--eval",
"(require :asdf)",
"--eval",
"(asdf:load-system :alive-lsp)",
"--eval",
"(alive/server:start)",
],
}

1
qlfile
View file

@ -1,3 +1,4 @@
git alive-lsp https://github.com/nobody-famous/alive-lsp.git
ql wild-package-inferred-system
ql fiveam
ql alexandria

View file

@ -2,6 +2,10 @@
(:class qlot/source/dist:source-dist
:initargs (:distribution "https://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest)
:version "2023-10-21"))
("alive-lsp" .
(:class qlot/source/git:source-git
:initargs (:remote-url "https://github.com/nobody-famous/alive-lsp.git")
:version "git-56c01fb34dd7ba9d0dab0e6e9bfba7529bbd7001"))
("wild-package-inferred-system" .
(:class qlot/source/ql:source-ql
:initargs (:%version :latest)