Compare commits

..

No commits in common. "621a555c25da2f668ece12795a33cc9e37e3a369" and "fd14195ccdbe1684f18e2cdae0a886458102184e" have entirely different histories.

6 changed files with 18 additions and 59 deletions

12
flake.lock generated
View file

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1739992710,
"narHash": "sha256-9kEscmGnXHjSgcqyJR4TzzHhska4yz1inSQs6HuO9qU=",
"lastModified": 1736204492,
"narHash": "sha256-CoBPRgkUex9Iz6qGSzi/BFVUQjndB0PmME2B6eEyeCs=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "1c189f011447810af939a886ba7bee33532bb1f9",
"rev": "20665c6efa83d71020c8730f26706258ba5c6b2a",
"type": "github"
},
"original": {
@ -22,11 +22,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1739866667,
"narHash": "sha256-EO1ygNKZlsAC9avfcwHkKGMsmipUk1Uc0TbrEZpkn64=",
"lastModified": 1736012469,
"narHash": "sha256-/qlNWm/IEVVH7GfgAIyP6EsVZI6zjAx1cV5zNyrs+rI=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "73cf49b8ad837ade2de76f87eb53fc85ed5d4680",
"rev": "8f3e1f807051e32d8c95cd12b9b421623850a34d",
"type": "github"
},
"original": {

View file

@ -26,35 +26,14 @@
};
extraConfig = {
branch.sort = "-committerdate";
core.editor = "nvim";
core.pager = "less -FX";
core = {
editor = "nvim";
fsmonitor = true;
pager = "less -FX";
untrackedCache = true;
};
diff.ignoreSubmodules = "none";
column.ui = "auto";
commit.verbose = true;
diff = {
algorithm = "histogram";
colorMoved = "plain";
ignoreSubmodules = "none";
mnemonicPrefix = true;
renames = true;
};
fetch = {
all = true;
parallel = 8;
prune = true;
pruneTags = true;
recurseSubmodules = true;
writeCommitGraph = true;
};
fetch.parallel = 8;
fetch.writeCommitGraph = true;
fetch.recurseSubmodules = true;
format.pretty = "format:%C(yellow)%h %Cblue%>(12)%ad %C(red)%G? %Cgreen%<(7,trunc)%aN%Cred%d %Creset%s";
@ -62,11 +41,8 @@
log.date = "relative";
merge = {
conflictstyle = "zdiff3";
ff = false;
tool = "nvim";
};
merge.ff = false;
merge.tool = "nvim";
mergetool.nvim.cmd = "nvim -d $BASE $LOCAL $REMOTE $MERGED -c 'DiffviewOpen'";
mergetool.nvim.trustExitCode = false;
@ -76,31 +52,17 @@
pull.rebase = true;
push = {
autoSetupRemote = true;
default = "simple";
followTags = true;
recurseSubmodules = "on-demand";
};
push.recurseSubmodules = "on-demand";
rebase = {
qutoSquash = true;
autoStash = true;
updateRefs = true;
};
rebase.autostash = true;
rerere = {
autoupdate = true;
enabled = true;
};
rerere.enabled = true;
status.submoduleSummary = true;
submodule.fetchJobs = 8;
submodule.recurse = true;
tag.sort = "version:refname";
worktree.guessRemote = true;
};

View file

@ -122,8 +122,6 @@
nixd
nixpkgs-fmt
bitbake-language-server
pyright
(python3.withPackages (ps: with ps; [
pep8
autopep8

View file

@ -113,7 +113,6 @@ local servers = {
}
}
},
["pyright"] = {},
["texlab"] = {},
["yamlls"] = {
yaml = {

View file

@ -1,7 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
devenv
difftastic
dust
htop

View file

@ -7,6 +7,7 @@
gs = "git status";
gd = "git diff";
gf = "git fetch";
gfp = "git fetch --prune";
k = "kubectl";
ww = "nvim -c VimwikiIndex";
};