summaryrefslogtreecommitdiff
path: root/start/lspconfig-0.1.3/lua/lspconfig/server_configurations/perlls.lua
blob: 5d241a5d69194a025e694a17fb2e049cbdb7476a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
local util = require 'lspconfig.util'

return {
  default_config = {
    cmd = {
      'perl',
      '-MPerl::LanguageServer',
      '-e',
      'Perl::LanguageServer::run',
      '--',
      '--port 13603',
      '--nostdio 0',
      '--version 2.1.0',
    },
    settings = {
      perl = {
        perlCmd = 'perl',
        perlInc = ' ',
        fileFilter = { '.pm', '.pl' },
        ignoreDirs = '.git',
      },
    },
    filetypes = { 'perl' },
    root_dir = util.find_git_ancestor,
    single_file_support = true,
  },
  docs = {
    description = [[
https://github.com/richterger/Perl-LanguageServer/tree/master/clients/vscode/perl

`Perl-LanguageServer`, a language server for Perl.

To use the language server, ensure that you have Perl::LanguageServer installed and perl command is on your path.
]],
    default_config = {
      root_dir = "vim's starting directory",
    },
  },
}