aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/dotls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lspconfig/dotls.lua')
-rw-r--r--lua/lspconfig/dotls.lua28
1 files changed, 0 insertions, 28 deletions
diff --git a/lua/lspconfig/dotls.lua b/lua/lspconfig/dotls.lua
deleted file mode 100644
index be1e86f3..00000000
--- a/lua/lspconfig/dotls.lua
+++ /dev/null
@@ -1,28 +0,0 @@
-local configs = require 'lspconfig/configs'
-local util = require 'lspconfig/util'
-
-local server_name = 'dotls'
-local bin_name = 'dot-language-server'
-
-local root_files = {
- '.git',
-}
-
-configs[server_name] = {
- default_config = {
- cmd = { bin_name, '--stdio' },
- filetypes = { 'dot' },
- root_dir = util.root_pattern(unpack(root_files)),
- single_file_support = true,
- },
- docs = {
- description = [[
-https://github.com/nikeee/dot-language-server
-
-`dot-language-server` can be installed via `npm`:
-```sh
-npm install -g dot-language-server
-```
- ]],
- },
-}