mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
fix(rust): include rust-analyzer in toolchain
This commit is contained in:
parent
2305bad15f
commit
2756c5af57
3 changed files with 25 additions and 7 deletions
|
|
@ -6,6 +6,9 @@ _: {
|
|||
ignores = [
|
||||
".DS_Store"
|
||||
".direnv/"
|
||||
".vscode/"
|
||||
".zed/"
|
||||
".idea/"
|
||||
];
|
||||
|
||||
userName = "Ryan Cao";
|
||||
|
|
@ -14,18 +17,26 @@ _: {
|
|||
extraConfig = {
|
||||
init.defaultBranch = "main";
|
||||
|
||||
commit.gpgsign = true;
|
||||
commit.gpgSign = true;
|
||||
gpg.format = "openpgp";
|
||||
user.signingkey = "48C96B2057D71CB1";
|
||||
user.signingKey = "48C96B2057D71CB1";
|
||||
|
||||
log.date = "iso";
|
||||
merge.conflictstyle = "zdiff3";
|
||||
merge.conflictStyle = "zdiff3";
|
||||
diff.algorithm = "histogram";
|
||||
|
||||
transfer.fsckobjects = true;
|
||||
fetch.fsckobjects = true;
|
||||
transfer.fsckObjects = true;
|
||||
fetch.fsckObjects = true;
|
||||
receive.fsckObjects = true;
|
||||
|
||||
blame.ignoreRevsFile = ".git-blame-ignore-revs";
|
||||
|
||||
fetch.prune = true;
|
||||
fetch.pruneTags = true;
|
||||
|
||||
branch.sort = "-committerdate";
|
||||
tag.sort = "taggerdate";
|
||||
|
||||
push.autoSetupRemote = true;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue