diff options
Diffstat (limited to 'lua/lspconfig/perlpls.lua')
| -rw-r--r-- | lua/lspconfig/perlpls.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/lspconfig/perlpls.lua b/lua/lspconfig/perlpls.lua index 6f8c0a7d..00c0d0c1 100644 --- a/lua/lspconfig/perlpls.lua +++ b/lua/lspconfig/perlpls.lua @@ -1,21 +1,21 @@ -local configs = require "lspconfig/configs" -local util = require "lspconfig/util" +local configs = require 'lspconfig/configs' +local util = require 'lspconfig/util' configs.perlpls = { default_config = { - cmd = { "pls" }, + cmd = { 'pls' }, settings = { perl = { perlcritic = { enabled = false }, }, }, - filetypes = { "perl" }, + filetypes = { 'perl' }, root_dir = function(filename) - return util.root_pattern ".git"(filename) or util.path.dirname(filename) + return util.root_pattern '.git'(filename) or util.path.dirname(filename) end, }, docs = { - package_json = "https://raw.githubusercontent.com/FractalBoy/perl-language-server/master/client/package.json", + package_json = 'https://raw.githubusercontent.com/FractalBoy/perl-language-server/master/client/package.json', description = [[ https://github.com/FractalBoy/perl-language-server https://metacpan.org/pod/PLS |
