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
# TeX
texpresso-vim # super fast live TeX preview
# texpresso-vim # super fast live TeX preview
# rust
crates-nvim # provides intelligent features for Crates.toml
@ -231,6 +231,9 @@
# haskell
haskell-tools-nvim
# fennel
nfnl
];
};
@ -260,7 +263,7 @@
bin = {
websocat = "${pkgs.websocat}/bin/websocat";
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";
};
nixdExtras = {
@ -301,6 +304,8 @@
lua-language-server
nixfmt-rfc-style
stylua
fennel-ls
fennel
]
);
};

View file

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