Compare commits
2 commits
0256cebaca
...
aaab1ea5bd
Author | SHA1 | Date | |
---|---|---|---|
Barna Máté | aaab1ea5bd | ||
Barna Máté | 96fa2296fa |
|
@ -1,4 +1,5 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./ai
|
./ai
|
||||||
|
@ -12,5 +13,4 @@
|
||||||
# Persistence
|
# Persistence
|
||||||
plugins.persistence.enable = true;
|
plugins.persistence.enable = true;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,16 +9,17 @@
|
||||||
settings.completion.callable.snippets = "add_parentheses";
|
settings.completion.callable.snippets = "add_parentheses";
|
||||||
};
|
};
|
||||||
|
|
||||||
lint = {
|
conform-nvim.settings = {
|
||||||
lintersByFt = {
|
formatters_by_ft = {
|
||||||
rust = [ "cargo" ];
|
rust = [ "cargo" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
linters = {
|
formatters = {
|
||||||
cargo = {
|
cargo = {
|
||||||
cmd = "${pkgs.rustfmt}/bin/cargo-fmt";
|
command = "cargo-fmt";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
plugins.telescope = {
|
plugins.telescope = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extensions = {
|
extensions = {
|
||||||
|
@ -17,6 +18,11 @@
|
||||||
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