diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2020-12-15 13:37:08 -0800 |
|---|---|---|
| committer | Matthieu Coudron <teto@users.noreply.github.com> | 2020-12-18 16:12:33 +0100 |
| commit | 1e4a963ba4d00d559247b5fca827142958d4dbdf (patch) | |
| tree | 3e3717fb103da923426af56351c3265a31b6344d /lua/nvim_lsp | |
| parent | Merge pull request #392 from abenz1267/master (diff) | |
| download | nvim-lspconfig-1e4a963ba4d00d559247b5fca827142958d4dbdf.tar nvim-lspconfig-1e4a963ba4d00d559247b5fca827142958d4dbdf.tar.gz nvim-lspconfig-1e4a963ba4d00d559247b5fca827142958d4dbdf.tar.bz2 nvim-lspconfig-1e4a963ba4d00d559247b5fca827142958d4dbdf.tar.lz nvim-lspconfig-1e4a963ba4d00d559247b5fca827142958d4dbdf.tar.xz nvim-lspconfig-1e4a963ba4d00d559247b5fca827142958d4dbdf.tar.zst nvim-lspconfig-1e4a963ba4d00d559247b5fca827142958d4dbdf.zip | |
zig: nvim_lsp/zls.lua -> lspconfig/zls.lua
Diffstat (limited to 'lua/nvim_lsp')
| -rw-r--r-- | lua/nvim_lsp/zls.lua | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/lua/nvim_lsp/zls.lua b/lua/nvim_lsp/zls.lua deleted file mode 100644 index 5f5742f7..00000000 --- a/lua/nvim_lsp/zls.lua +++ /dev/null @@ -1,22 +0,0 @@ -local configs = require 'nvim_lsp/configs' -local util = require 'nvim_lsp/util' - -configs.zls = { - default_config = { - cmd = {"zls"}; - filetypes = {"zig", "zir"}; - root_dir = function(fname) - return util.root_pattern("zls.json", ".git")(fname) or util.path.dirname(fname) - end - }; - docs = { - description = [[ - https://github.com/zigtools/zls - - `Zig LSP implementation + Zig Language Server`. - ]]; - default_config = { - root_dir = [[util.root_pattern("zls.json", ".git") or current_file_dirname]]; - }; - }; -}; |
