19 lines
286 B
Nix
19 lines
286 B
Nix
{
|
|
# General
|
|
coc.source = {
|
|
around.enable = true;
|
|
buffer.enable = true;
|
|
file.enable = false;
|
|
};
|
|
|
|
# LSP
|
|
languageserver = {
|
|
nix = {
|
|
command = "rnix-lsp";
|
|
filetypes = [ "nix" ];
|
|
};
|
|
};
|
|
|
|
# Rust
|
|
"rust-analyzer.checkOnSave.command" = "clippy";
|
|
}
|