summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-04-27 21:20:45 +0200
committerGitHub <noreply@github.com>2022-04-27 21:20:45 +0200
commit090c8a87b31de5c5a21eebc55adb22ddab625015 (patch)
tree3c92027c937bcca88547d2654d91f24574653634 /Makefile
parentrun autogen_metadata.lua (diff)
downloadmason-090c8a87b31de5c5a21eebc55adb22ddab625015.tar
mason-090c8a87b31de5c5a21eebc55adb22ddab625015.tar.gz
mason-090c8a87b31de5c5a21eebc55adb22ddab625015.tar.bz2
mason-090c8a87b31de5c5a21eebc55adb22ddab625015.tar.lz
mason-090c8a87b31de5c5a21eebc55adb22ddab625015.tar.xz
mason-090c8a87b31de5c5a21eebc55adb22ddab625015.tar.zst
mason-090c8a87b31de5c5a21eebc55adb22ddab625015.zip
feat: integrate with lspconfig's on_setup hook (#631)
* feat: integrate with lspconfig's on_setup hook * fix!: don't use aliased installation directories if new .setup() fn is used This makes it so servers are always installed in a directory name that corresponds with the server name. The reason aliased installation directories is supported is lost on me, but it's legacy and complicates things unnecessarily. This is a breaking change for users who previously were using the `.on_server_ready()` hook, and now transitioned to setting up servers directly via lspconfig. These users will need to reinstall the server. * fix: block usage of the deprecated server:setup() method if new setup method is used * fix: allow passing no arg to setup() * docs: ok final.v3 readme
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4a7fc81c..cd43a116 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@ NVIM_HEADLESS:=nvim --headless --noplugin -u tests/minimal_init.vim
dependencies:
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim dependencies/pack/vendor/start/plenary.nvim
+ git clone --depth 1 https://github.com/neovim/nvim-lspconfig dependencies/pack/vendor/start/nvim-lspconfig
.PHONY: clean_dependencies
clean_dependencies: