enable jsonls, helmls and add ansible-vim pkg (#5)

Enable JSON Language Server and Helm Language Server. Added ansible-vim
package.
This commit is contained in:
Roel de Cort 2024-06-11 15:51:54 +02:00 committed by GitHub
parent 677ee2cd46
commit 74172fd7e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 50 additions and 18 deletions

View file

@ -1,4 +1,4 @@
{
{pkgs, ...}: {
plugins = {
lsp-lines = {enable = true;};
lsp-format = {enable = true;};
@ -14,6 +14,8 @@
terraformls = {enable = true;};
tsserver = {enable = true;};
ansiblels = {enable = true;};
jsonls = {enable = true;};
helm-ls = {enable = true;};
yamlls = {
enable = true;
extraOptions = {
@ -90,6 +92,10 @@
};
};
};
extraPlugins = with pkgs.vimPlugins; [
ansible-vim
];
extraConfigLua = ''
local _border = "rounded"