Compare commits
No commits in common. "aaab1ea5bde64f23bf04b270ec7c2d8a333e3e57" and "0256cebaca7690307fbf71b310b8fdb422160210" have entirely different histories.
aaab1ea5bd
...
0256cebaca
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./ai
|
./ai
|
||||||
|
@ -13,4 +12,5 @@
|
||||||
# Persistence
|
# Persistence
|
||||||
plugins.persistence.enable = true;
|
plugins.persistence.enable = true;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,17 +9,16 @@
|
||||||
settings.completion.callable.snippets = "add_parentheses";
|
settings.completion.callable.snippets = "add_parentheses";
|
||||||
};
|
};
|
||||||
|
|
||||||
conform-nvim.settings = {
|
lint = {
|
||||||
formatters_by_ft = {
|
lintersByFt = {
|
||||||
rust = [ "cargo" ];
|
rust = [ "cargo" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
formatters = {
|
linters = {
|
||||||
cargo = {
|
cargo = {
|
||||||
command = "cargo-fmt";
|
cmd = "${pkgs.rustfmt}/bin/cargo-fmt";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
|
||||||
plugins.telescope = {
|
plugins.telescope = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extensions = {
|
extensions = {
|
||||||
|
@ -18,11 +17,6 @@
|
||||||
action = "find_files";
|
action = "find_files";
|
||||||
options.desc = "Find project files";
|
options.desc = "Find project files";
|
||||||
};
|
};
|
||||||
"<leader>f" = {
|
|
||||||
action = "live_grep";
|
|
||||||
options.desc = "Livegrep";
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue