feat(revamp): add zsh and neovim configs, add an install script and a dependencies list
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#
|
||||
# Lists explicitly installed Pacman packages.
|
||||
#
|
||||
# Authors:
|
||||
# Benjamin Boudreau <dreurmail@gmail.com>
|
||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||
#
|
||||
|
||||
# function pacman-list-explicit {
|
||||
|
||||
pacman --query --explicit --info \
|
||||
| awk '
|
||||
BEGIN {
|
||||
FS=":"
|
||||
}
|
||||
/^Name/ {
|
||||
print $2
|
||||
}
|
||||
/^Description/ {
|
||||
print $2
|
||||
}
|
||||
'
|
||||
|
||||
# }
|
||||
Reference in New Issue
Block a user