diff options
author | Minijackson <minijackson@riseup.net> | 2021-06-15 16:23:54 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2021-06-15 16:23:54 +0200 |
commit | 27d5fed11dca4b42b629921f1c14ca8bff16143b (patch) | |
tree | b18e9f468765bf21d58655de422daf0fd87c41d5 /dotfiles | |
parent | 1a827b1f16584a3983960971b02b8c9f173a738f (diff) | |
download | nixos-config-reborn-27d5fed11dca4b42b629921f1c14ca8bff16143b.tar.gz nixos-config-reborn-27d5fed11dca4b42b629921f1c14ca8bff16143b.zip |
vim-dev: specify commands for LSP + fix clangd resource-root
Diffstat (limited to 'dotfiles')
-rw-r--r-- | dotfiles/vim-dev.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/vim-dev.lua b/dotfiles/vim-dev.lua index d89a3bb..0422b2f 100644 --- a/dotfiles/vim-dev.lua +++ b/dotfiles/vim-dev.lua | |||
@@ -50,7 +50,7 @@ function setup_lsp_with(servers) | |||
50 | for _, server in ipairs(servers) do | 50 | for _, server in ipairs(servers) do |
51 | lspconfig[server].setup { | 51 | lspconfig[server].setup { |
52 | capabilities = capabilities, | 52 | capabilities = capabilities, |
53 | cmd = { vim.g[server .. "_path"] }, | 53 | cmd = vim.g[server .. "_cmd"], |
54 | on_attach = on_attach, | 54 | on_attach = on_attach, |
55 | } | 55 | } |
56 | end | 56 | end |