fix: build and add fennel

This commit is contained in:
Youwen Wu 2025-02-01 01:09:25 -08:00
parent 74bc30bbdb
commit 14ba7c5dd3
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
2 changed files with 8 additions and 2 deletions

View file

@ -210,7 +210,7 @@
lazydev-nvim # lazy loaded lua_ls when developing neovim plugins and configuration lazydev-nvim # lazy loaded lua_ls when developing neovim plugins and configuration
# TeX # TeX
texpresso-vim # super fast live TeX preview # texpresso-vim # super fast live TeX preview
# rust # rust
crates-nvim # provides intelligent features for Crates.toml crates-nvim # provides intelligent features for Crates.toml
@ -231,6 +231,9 @@
# haskell # haskell
haskell-tools-nvim haskell-tools-nvim
# fennel
nfnl
]; ];
}; };
@ -260,7 +263,7 @@
bin = { bin = {
websocat = "${pkgs.websocat}/bin/websocat"; websocat = "${pkgs.websocat}/bin/websocat";
tinymist = "${pkgs.tinymist}/bin/tinymist"; tinymist = "${pkgs.tinymist}/bin/tinymist";
texpresso = "${pkgs.texpresso}/bin/texpresso"; # texpresso = "${pkgs.texpresso}/bin/texpresso";
neovim-node-host = "${pkgs.neovim-node-client}/bin/neovim-node-host"; neovim-node-host = "${pkgs.neovim-node-client}/bin/neovim-node-host";
}; };
nixdExtras = { nixdExtras = {
@ -301,6 +304,8 @@
lua-language-server lua-language-server
nixfmt-rfc-style nixfmt-rfc-style
stylua stylua
fennel-ls
fennel
] ]
); );
}; };

View file

@ -72,6 +72,7 @@ M.setup = function()
lspconfig.vale_ls.setup({ lspconfig.vale_ls.setup({
filetypes = { "markdown", "text", "tex", "rst", "typst" }, filetypes = { "markdown", "text", "tex", "rst", "typst" },
}) })
lspconfig.fennel_ls.setup({})
end end
return M return M