diff --git a/README.md b/README.md
index 1a4d9c9..dd777f1 100644
--- a/README.md
+++ b/README.md
@@ -180,14 +180,14 @@ To cook yourself, download the [latest stable release](https://github.com/jarun/
#### Shell completion
-Option completion scripts for Bash, Fish and Zsh can be found in respective subdirectories of [`scripts/auto-completion/`](scripts/auto-completion). Please refer to your shell's manual for installation instructions.
+Option completion scripts for Bash, Fish and Zsh can be found in respective subdirectories of [`misc/auto-completion/`](misc/auto-completion). Please refer to your shell's manual for installation instructions.
#### QUICKSTART
1. Install the [utilities you may need](#utility-dependencies) based on your regular workflows.
2. Configure [cd on quit](https://github.com/jarun/nnn/wiki/hacking-nnn#cd-on-quit).
3. Optionally open all text files in `$EDITOR` (fallback vi): `export NNN_USE_EDITOR=1`
-4. For additional functionality [install plugins](https://github.com/jarun/nnn/tree/master/plugins#installing-plugins) and the GUI app launcher [`nlaunch`](https://github.com/jarun/nnn/tree/master/scripts/nlaunch).
+4. For additional functionality [install plugins](https://github.com/jarun/nnn/tree/master/plugins#installing-plugins) and the GUI app launcher [`nlaunch`](https://github.com/jarun/nnn/tree/master/misc/nlaunch).
- Don't memorize keys. Arrows, / and q suffice. Press ? for help on keyboard shortcuts anytime.
- When you are ready for more, start [hacking `nnn`](https://github.com/jarun/nnn/wiki/hacking-nnn).
diff --git a/scripts/auto-completion/bash/nnn-completion.bash b/misc/auto-completion/bash/nnn-completion.bash
similarity index 100%
rename from scripts/auto-completion/bash/nnn-completion.bash
rename to misc/auto-completion/bash/nnn-completion.bash
diff --git a/scripts/auto-completion/fish/nnn.fish b/misc/auto-completion/fish/nnn.fish
similarity index 100%
rename from scripts/auto-completion/fish/nnn.fish
rename to misc/auto-completion/fish/nnn.fish
diff --git a/scripts/auto-completion/zsh/_nnn b/misc/auto-completion/zsh/_nnn
similarity index 100%
rename from scripts/auto-completion/zsh/_nnn
rename to misc/auto-completion/zsh/_nnn
diff --git a/scripts/clipboard-copier/copier b/misc/clipboard-copier/copier
similarity index 100%
rename from scripts/clipboard-copier/copier
rename to misc/clipboard-copier/copier
diff --git a/scripts/natool/natool b/misc/natool/natool
similarity index 100%
rename from scripts/natool/natool
rename to misc/natool/natool
diff --git a/scripts/nlaunch/README.md b/misc/nlaunch/README.md
similarity index 100%
rename from scripts/nlaunch/README.md
rename to misc/nlaunch/README.md
diff --git a/scripts/nlaunch/nlaunch b/misc/nlaunch/nlaunch
similarity index 100%
rename from scripts/nlaunch/nlaunch
rename to misc/nlaunch/nlaunch
diff --git a/scripts/nlay/README.md b/misc/nlay/README.md
similarity index 100%
rename from scripts/nlay/README.md
rename to misc/nlay/README.md
diff --git a/scripts/nlay/nlay b/misc/nlay/nlay
similarity index 100%
rename from scripts/nlay/nlay
rename to misc/nlay/nlay
diff --git a/scripts/nlay/nlay.1 b/misc/nlay/nlay.1
similarity index 100%
rename from scripts/nlay/nlay.1
rename to misc/nlay/nlay.1
diff --git a/scripts/quitcd/quitcd.bash b/misc/quitcd/quitcd.bash
similarity index 100%
rename from scripts/quitcd/quitcd.bash
rename to misc/quitcd/quitcd.bash
diff --git a/scripts/quitcd/quitcd.csh b/misc/quitcd/quitcd.csh
similarity index 100%
rename from scripts/quitcd/quitcd.csh
rename to misc/quitcd/quitcd.csh
diff --git a/scripts/quitcd/quitcd.fish b/misc/quitcd/quitcd.fish
similarity index 100%
rename from scripts/quitcd/quitcd.fish
rename to misc/quitcd/quitcd.fish
diff --git a/scripts/quitcd/quitcd.zsh b/misc/quitcd/quitcd.zsh
similarity index 100%
rename from scripts/quitcd/quitcd.zsh
rename to misc/quitcd/quitcd.zsh
diff --git a/scripts/test/mktest.sh b/misc/test/mktest.sh
similarity index 100%
rename from scripts/test/mktest.sh
rename to misc/test/mktest.sh
diff --git a/plugins/getplugs b/plugins/getplugs
index a42bab1..b460d83 100755
--- a/plugins/getplugs
+++ b/plugins/getplugs
@@ -15,5 +15,5 @@ cd ~/.config/nnn/plugins
wget -nv --show-progress https://github.com/jarun/nnn/archive/master.tar.gz
tar -xf master.tar.gz
cp -vf nnn-master/plugins/* .
-sudo mv -vf nnn-master/scripts/nlaunch/nlaunch /usr/local/bin/
+sudo mv -vf nnn-master/misc/nlaunch/nlaunch /usr/local/bin/
rm -rf nnn-master/ master.tar.gz README.md