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
|
||||
|
||||
# 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
|
||||
]
|
||||
);
|
||||
};
|
||||
|
|
|
@ -72,6 +72,7 @@ M.setup = function()
|
|||
lspconfig.vale_ls.setup({
|
||||
filetypes = { "markdown", "text", "tex", "rst", "typst" },
|
||||
})
|
||||
lspconfig.fennel_ls.setup({})
|
||||
end
|
||||
|
||||
return M
|
||||
|
|
Loading…
Reference in a new issue