diff options
author | Yigit Sever | 2023-08-17 18:34:29 +0300 |
---|---|---|
committer | Yigit Sever | 2023-08-17 18:34:29 +0300 |
commit | 14c14cfcc9aeb4bada6d2429162ded2917f26a94 (patch) | |
tree | 948f02f389bc18f815da7955b8597e7d715d5339 | |
parent | f9d6f011c34313aa12ced6712a8b24ec5df20f85 (diff) | |
download | dotfiles-14c14cfcc9aeb4bada6d2429162ded2917f26a94.tar.gz dotfiles-14c14cfcc9aeb4bada6d2429162ded2917f26a94.tar.bz2 dotfiles-14c14cfcc9aeb4bada6d2429162ded2917f26a94.zip |
nvim: use denols for nvim-lsp
-rw-r--r-- | .config/nvim/lua/plugin_settings.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/lua/plugin_settings.lua b/.config/nvim/lua/plugin_settings.lua index 1025c00..351592d 100644 --- a/.config/nvim/lua/plugin_settings.lua +++ b/.config/nvim/lua/plugin_settings.lua | |||
@@ -350,7 +350,7 @@ end | |||
350 | -- bring in cmp_nvim_lsp | 350 | -- bring in cmp_nvim_lsp |
351 | local capabilities = require('cmp_nvim_lsp').default_capabilities() | 351 | local capabilities = require('cmp_nvim_lsp').default_capabilities() |
352 | 352 | ||
353 | local servers = { 'jedi_language_server', 'texlab', 'clangd' } | 353 | local servers = { 'jedi_language_server', 'texlab', 'clangd', 'denols' } |
354 | for _, lsp in ipairs(servers) do | 354 | for _, lsp in ipairs(servers) do |
355 | nvim_lsp[lsp].setup { | 355 | nvim_lsp[lsp].setup { |
356 | on_attach = on_attach, | 356 | on_attach = on_attach, |