bash: add vim-git function
authorJulien Moutinho <julm@sourcephile.fr>
Sun, 2 May 2021 07:29:47 +0000 (09:29 +0200)
committerJulien Moutinho <julm@sourcephile.fr>
Sun, 2 May 2021 07:29:47 +0000 (09:29 +0200)
flake.lock
homes/softwares/bash.nix

index 3ce2fa22b2dd98621ca6331ba250d00e116a4c79..5b8ecbd09bc2c750155a0321a9102870ba079bd0 100644 (file)
@@ -2,11 +2,11 @@
   "nodes": {
     "flake-utils": {
       "locked": {
-        "lastModified": 1617631617,
-        "narHash": "sha256-PARRCz55qN3gy07VJZIlFeOX420d0nGF0RzGI/9hVlw=",
+        "lastModified": 1619345332,
+        "narHash": "sha256-qHnQkEp1uklKTpx3MvKtY6xzgcqXDsz5nLilbbuL+3A=",
         "owner": "numtide",
         "repo": "flake-utils",
-        "rev": "b2c27d1a81b0dc266270fa8aeecebbd1807fc610",
+        "rev": "2ebf2558e5bf978c7fb8ea927dfaed8fefab2e28",
         "type": "github"
       },
       "original": {
index d10ab69a6fdada1e940bc7071c76f29f4014ce5f..34faba928c8053dfc818e49e0a0055e849a164e0 100644 (file)
@@ -11,6 +11,7 @@ programs.bash = {
     shopt -s globstar
     # Disable ctrl-s/ctrl-q flow control
     stty -ixon
+    vim-git () { $EDITOR $(git diff-tree --no-commit-id --name-only -r "$@"); }
   '';
 };
 programs.direnv.enableBashIntegration = true;