fix: build and add fennel
This commit is contained in:
parent
74bc30bbdb
commit
14ba7c5dd3
2 changed files with 8 additions and 2 deletions
|
@ -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
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue