diff options
| author | Christian Krinitsin <code@krinitsin.xyz> | 2024-03-19 09:57:46 +0100 |
|---|---|---|
| committer | Christian Krinitsin <code@krinitsin.xyz> | 2024-03-19 09:57:46 +0100 |
| commit | 96f256c7aa0a8de3eef2f56909678c2268e046b6 (patch) | |
| tree | 6b48687cb2805f16d6fa9295b03e356ffb08d9af /install.sh | |
| parent | b50db4bcc05eee8d8a85ddc74bac82eba8401d59 (diff) | |
| download | dotfiles-96f256c7aa0a8de3eef2f56909678c2268e046b6.tar.gz dotfiles-96f256c7aa0a8de3eef2f56909678c2268e046b6.zip | |
fix a few things, add nvimtree plugin
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/install.sh b/install.sh index 7de1e56..e16a49f 100755 --- a/install.sh +++ b/install.sh @@ -1,5 +1,10 @@ #!/usr/bin/bash +# cd into script path +SCRIPT=$(readlink -f "$0") +SCRIPTPATH=$(dirname "$SCRIPT") +cd $SCRIPTPATH + # Ignore list IGNORE=("bin" "wallpaper" "install.sh" ".git") |