Add perl dev stuff 😓

This commit is contained in:
Geoffrey Frogeye 2022-12-08 10:58:06 +01:00
parent 814f6cb71b
commit 8e0d49307a
4 changed files with 8 additions and 0 deletions

View file

@ -4,6 +4,7 @@ dev_stuffs:
- ansible - ansible
- docker - docker
- network - network
- perl
- php - php
- python - python
- shell - shell

View file

@ -4,6 +4,7 @@ dev_stuffs:
- shell - shell
- network - network
- ansible - ansible
- perl
- python - python
extensions: extensions:
- gh - gh

View file

@ -0,0 +1,3 @@
{% if arch_based %}
perl-perl-languageserver
{% endif %}

View file

@ -40,6 +40,9 @@ end
-- Use a loop to conveniently call 'setup' on multiple servers and -- Use a loop to conveniently call 'setup' on multiple servers and
-- map buffer local keybindings when the language server attaches -- map buffer local keybindings when the language server attaches
local servers = { local servers = {
{% if 'perl' in dev_stuffs %}
"perlls",
{% endif %}
{% if 'python' in dev_stuffs %} {% if 'python' in dev_stuffs %}
"pylsp", "pylsp",
{% endif %} {% endif %}