diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/mutt_ls.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/mutt_ls.lua b/lua/lspconfig/server_configurations/mutt_ls.lua new file mode 100644 index 00000000..d06bb9ff --- /dev/null +++ b/lua/lspconfig/server_configurations/mutt_ls.lua @@ -0,0 +1,25 @@ +local util = require 'lspconfig.util' + +return { + default_config = { + cmd = { 'mutt-language-server' }, + filetypes = { 'python' }, + root_dir = util.find_git_ancestor(), + single_file_support = true, + settings = {}, + }, + docs = { + description = [[ +https://github.com/neomutt/mutt-language-server + +A language server for (neo)mutt's muttrc. It can be installed via pip. + +```sh +pip install mutt-language-server +``` + ]], + default_config = { + root_dir = [[util.find_git_ancestor]], + }, + }, +} |
