feat(nvim): Enable bacon plugin

This commit is contained in:
Jalil David Salamé Messina 2024-04-02 17:05:17 +02:00
parent f8b43d8f36
commit fd67f6c079
Signed by: jalil
GPG key ID: F016B9E770737A0B
2 changed files with 14 additions and 1 deletions

View file

@ -153,7 +153,16 @@ in
(lib.mkIf (cfg.enable && devcfg.enable && devcfg.rust.enable) {
home.packages = [ pkgs.rustup ] ++ devcfg.rust.extraPackages;
# Background code checker (for Rust)
programs.bacon.enable = true;
programs.bacon = {
enable = true;
settings = {
export = {
enabled = true;
path = ".bacon-locations";
line_format = "{kind} {path}:{line}:{column} {message}";
};
};
};
})
];
}

View file

@ -1,4 +1,8 @@
{ lib }: {
bacon = {
enable = true;
settings.quickfix.enabled = true;
};
cmp = {
enable = true;
cmdline = {