aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/millet.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lsp/millet.lua')
-rw-r--r--lsp/millet.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/lsp/millet.lua b/lsp/millet.lua
new file mode 100644
index 00000000..1de1bde0
--- /dev/null
+++ b/lsp/millet.lua
@@ -0,0 +1,17 @@
+---@brief
+---
+---https://github.com/azdavis/millet
+--
+-- Millet, a language server for Standard ML
+--
+-- To use with nvim:
+--
+-- 1. Install a Rust toolchain: https://rustup.rs
+-- 2. Clone the repo
+-- 3. Run `cargo build --release --bin lang-srv`
+-- 4. Move `target/release/lang-srv` to somewhere on your $PATH as `millet`
+return {
+ cmd = { 'millet' },
+ filetypes = { 'sml' },
+ root_markers = { 'millet.toml' },
+}