21 lines
305 B
Nix
21 lines
305 B
Nix
{
|
|
imports = [
|
|
./nix.nix
|
|
./lsp.nix
|
|
./bash.nix
|
|
./treesitter.nix
|
|
./html.nix
|
|
./ts.nix
|
|
./go.nix
|
|
./lua.nix
|
|
];
|
|
|
|
vim.languages = {
|
|
enableLSP = true;
|
|
enableTreesitter = true;
|
|
enableFormat = true;
|
|
enableExtraDiagnostics = true;
|
|
|
|
typst.enable = true;
|
|
};
|
|
}
|