Support SQL dev
This commit is contained in:
parent
4b9d696aee
commit
2e759f9fc6
|
@ -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
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
sqls
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue