Support SQL dev

This commit is contained in:
Geoffrey Frogeye 2022-03-20 18:09:21 +01:00
parent 4b9d696aee
commit 2e759f9fc6
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
3 changed files with 8 additions and 3 deletions

View file

@ -1,12 +1,13 @@
root_access: yes root_access: yes
display_server: "x11" display_server: "x11"
dev_stuffs: dev_stuffs:
- python
- shell
- network
- ansible - ansible
- docker - docker
- network
- php - php
- python
- shell
- sql
software_full: yes software_full: yes
has_battery: yes has_battery: yes
auto_numlock: yes auto_numlock: yes

View file

@ -0,0 +1 @@
sqls

View file

@ -47,6 +47,9 @@ local servers = {
{% if 'php' in dev_stuffs %} {% if 'php' in dev_stuffs %}
"phpactor", -- Install this one manually https://phpactor.readthedocs.io/en/master/usage/standalone.html#global-installation "phpactor", -- Install this one manually https://phpactor.readthedocs.io/en/master/usage/standalone.html#global-installation
{% endif %} {% endif %}
{% if 'sql' in dev_stuffs %}
"sqls",
{% endif %}
} }
for _, lsp in ipairs(servers) do for _, lsp in ipairs(servers) do
nvim_lsp[lsp].setup { nvim_lsp[lsp].setup {