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:
parent
677ee2cd46
commit
74172fd7e7
3 changed files with 50 additions and 18 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue