13 lines
217 B
Nix
13 lines
217 B
Nix
{
|
|
imports = [
|
|
./nix.nix
|
|
./python.nix
|
|
];
|
|
plugins.lsp.servers = {
|
|
typos_lsp = {
|
|
enable = true;
|
|
extraOptions.init_options.diagnosticSeverity = "Hint";
|
|
};
|
|
astro.enable = true;
|
|
};
|
|
}
|