aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/nvim_lsp.vim
diff options
context:
space:
mode:
authorHirokazu Hata <h.hata.ai.t@gmail.com>2020-09-06 17:49:21 +0900
committerHirokazu Hata <h.hata.ai.t@gmail.com>2020-09-06 17:49:21 +0900
commitddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de (patch)
treec301c7a765535dcb5387d76cc71e28d845dcce23 /plugin/nvim_lsp.vim
parentMerge pull request #238 from steelsojka/angular-ls (diff)
downloadnvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar.gz
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar.bz2
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar.lz
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar.xz
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar.zst
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.zip
Rename nvim_lsp to lspconfig
Diffstat (limited to 'plugin/nvim_lsp.vim')
-rw-r--r--plugin/nvim_lsp.vim14
1 files changed, 0 insertions, 14 deletions
diff --git a/plugin/nvim_lsp.vim b/plugin/nvim_lsp.vim
deleted file mode 100644
index a62fc1ca..00000000
--- a/plugin/nvim_lsp.vim
+++ /dev/null
@@ -1,14 +0,0 @@
-if exists('g:nvim_lsp')
- finish
-endif
-let g:nvim_lsp = 1
-
-lua << EOF
-lsp_complete_installable_servers = function()
- return table.concat(require'nvim_lsp'.available_servers(), '\n')
-end
-lsp_complete_servers = function()
- return table.concat(require'nvim_lsp'.installable_servers(), '\n')
-end
-require'nvim_lsp'._root._setup()
-EOF