diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-04 18:52:04 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-04 18:52:04 +0200 |
| commit | 78dc86af11cf3add3f2c27d357ffd6294fc9fc93 (patch) | |
| tree | ac565c85820594bd915d64147e27286d7e878b45 /common/home/programs | |
| parent | 5aab179f6fe3def9b1f18f9e3419fb338be84a44 (diff) | |
use ocamllsp from opam
Diffstat (limited to 'common/home/programs')
| -rw-r--r-- | common/home/programs/nixvim/plugins/lsp.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/common/home/programs/nixvim/plugins/lsp.nix b/common/home/programs/nixvim/plugins/lsp.nix index 578518f..b52520d 100644 --- a/common/home/programs/nixvim/plugins/lsp.nix +++ b/common/home/programs/nixvim/plugins/lsp.nix @@ -23,7 +23,11 @@ pyright.enable = true; - ocamllsp.enable = true; + ocamllsp = { + enable = true; + package = null; + cmd = [ "ocamllsp" ]; + }; }; keymaps.lspBuf = { |