add lsp deployment document
diff --git a/README.md b/README.md
index 7cf4d2c..7b164bc 100644
--- a/README.md
+++ b/README.md
@@ -24,4 +24,41 @@
```shell
pnpm build
-```
\ No newline at end of file
+```
+
+## Install LSP
+
+install sql lsp
+
+```shell
+go install github.com/lighttiger2505/sqls@latest
+```
+
+install shell lsp
+```shell
+npm i -g bash-language-server
+```
+
+install python lsp
+```shell
+pip install python-lsp-server
+```
+
+## Configuration DB
+The connection to the RDBMS is essential to take advantage of the functionality provided by sqls. You need to set the connection to the RDBMS.
+
+## Configuration Methods
+
+
+```
+lowercaseKeywords: false
+connections:
+ - alias: mysql
+ driver: mysql
+ proto: tcp
+ user: root
+ passwd: root
+ host: 127.0.0.1
+ port: 13306
+ dbName: world
+```