summaryrefslogtreecommitdiff
path: root/dot_config/nvim_new/lsp/sqlls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dot_config/nvim_new/lsp/sqlls.lua')
-rw-r--r--dot_config/nvim_new/lsp/sqlls.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/dot_config/nvim_new/lsp/sqlls.lua b/dot_config/nvim_new/lsp/sqlls.lua
new file mode 100644
index 0000000..aebd4c9
--- /dev/null
+++ b/dot_config/nvim_new/lsp/sqlls.lua
@@ -0,0 +1,12 @@
+---@brief
+---
+--- https://github.com/joe-re/sql-language-server
+---
+--- This LSP can be installed via `npm`. Find further instructions on manual installation of the sql-language-server at [joe-re/sql-language-server](https://github.com/joe-re/sql-language-server).
+
+return {
+ cmd = { 'sql-language-server', 'up', '--method', 'stdio' },
+ filetypes = { 'sql', 'mysql' },
+ root_markers = { '.sqllsrc.json' },
+ settings = {},
+}