configs/neovim: enable htmx-lsp

This commit is contained in:
Aaron Bieber 2024-04-26 19:41:27 -06:00
parent d13416858b
commit 90b41ea331
No known key found for this signature in database
2 changed files with 4 additions and 2 deletions

View File

@ -61,6 +61,7 @@ lspc.perlpls.setup {};
lspc.solargraph.setup {};
lspc.tsserver.setup {};
lspc.zls.setup {};
lspc.htmx.setup{};
o.hlsearch = true;

View File

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, isUnstable, ... }:
with pkgs;
let
vimBuildTool = pkgs.vimUtils.buildVimPlugin;
@ -26,6 +26,7 @@ let
};
};
unstablePkgs = if isUnstable then [ htmx-lsp ] else [ ];
baseVimPackages = with vimPlugins; [
elm-vim
fugitive
@ -88,7 +89,7 @@ in
sumneko-lua-language-server
tree-sitter
zls
];
] ++ unstablePkgs;
programs.neovim = {
enable = true;