diff options
author | Vikas Kushwaha <dev@vikas.rocks> | 2025-05-21 14:30:00 +0530 |
---|---|---|
committer | Vikas Kushwaha <dev@vikas.rocks> | 2025-05-21 14:30:00 +0530 |
commit | 0d397e4d3d204a1e016c0863815f0b5dc516c46b (patch) | |
tree | 5e5db5a8b53555783ca3b5679bc21876e9de0b6c /.local/bin/shorts/gi | |
parent | e55ad8ca4f99fa024106d5695a55f9ac132d7b68 (diff) |
added some new scripts and cleaned up nvim directory
Diffstat (limited to '.local/bin/shorts/gi')
-rwxr-xr-x | .local/bin/shorts/gi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.local/bin/shorts/gi b/.local/bin/shorts/gi new file mode 100755 index 0000000..d78ff99 --- /dev/null +++ b/.local/bin/shorts/gi @@ -0,0 +1,6 @@ +#!/bin/sh + +# gi - edit the Git Ignore file of current repo + +TOPLEVEL="$(git rev-parse --show-toplevel)" || exit +find "$TOPLEVEL" -name ".gitignore" | xargs -r nvim -p |