28 lines
778 B
Text
28 lines
778 B
Text
Use this file as a post-it for packages to install on laptop/desktop.
|
|
|
|
add notation about awk as
|
|
Select everything but the second field:
|
|
awk '!($2="")'
|
|
|
|
add notation about tr (translate command):
|
|
replace every newline with a single space:
|
|
tr '\n' ' '
|
|
|
|
add notation about using find to list only files in current directory and NOT subdirectory:
|
|
find $dir -maxdepth 1 -type f
|
|
|
|
Install zsh-completions-git
|
|
|
|
in the aur_packages directory:
|
|
|
|
git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git
|
|
|
|
source ~/aur_packages/zsh-autocomplete/zsh-autocomplete.plugin.zsh-completions-git
|
|
|
|
Make sure to comment out any references to compinit (but keep it around in case this fails)
|
|
|
|
Then in your .zshrc file, place:
|
|
|
|
|
|
at 9:06
|
|
https://www.youtube.com/watch?v=bTLYiNvRIVI
|