diff options
| author | Igor <igorlfs@ufmg.br> | 2025-08-18 23:41:27 -0300 |
|---|---|---|
| committer | Igor <igorlfs@ufmg.br> | 2025-08-18 23:41:27 -0300 |
| commit | ec27b247a5e25f6997b66aee30090eda18efaa27 (patch) | |
| tree | 6430c1e4e840c0936a6796009fcc3b6cd509e0e8 /lsp/marksman.lua | |
| parent | chore: add type annotation for configs (diff) | |
| download | nvim-lspconfig-ec27b247a5e25f6997b66aee30090eda18efaa27.tar nvim-lspconfig-ec27b247a5e25f6997b66aee30090eda18efaa27.tar.gz nvim-lspconfig-ec27b247a5e25f6997b66aee30090eda18efaa27.tar.bz2 nvim-lspconfig-ec27b247a5e25f6997b66aee30090eda18efaa27.tar.lz nvim-lspconfig-ec27b247a5e25f6997b66aee30090eda18efaa27.tar.xz nvim-lspconfig-ec27b247a5e25f6997b66aee30090eda18efaa27.tar.zst nvim-lspconfig-ec27b247a5e25f6997b66aee30090eda18efaa27.zip | |
chore: miscellaneous type fixes
Diffstat (limited to 'lsp/marksman.lua')
| -rw-r--r-- | lsp/marksman.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lsp/marksman.lua b/lsp/marksman.lua index 52c4f3b6..fc1e048f 100644 --- a/lsp/marksman.lua +++ b/lsp/marksman.lua @@ -8,12 +8,9 @@ --- --- Pre-built binaries can be downloaded from https://github.com/artempyanykh/marksman/releases -local bin_name = 'marksman' -local cmd = { bin_name, 'server' } - ---@type vim.lsp.Config return { - cmd = cmd, + cmd = { 'marksman', 'server' }, filetypes = { 'markdown', 'markdown.mdx' }, root_markers = { '.marksman.toml', '.git' }, } |
