Added pacman package installation script

Updated pacman packages lists.
This commit is contained in:
2018-12-03 17:33:11 -05:00
parent ae31b055c2
commit ee37eb058e
10 changed files with 178 additions and 80 deletions

View File

@@ -1,27 +0,0 @@
#!/bin/zsh
# link files {{{ #
# Get directory variables from script.
. ../scripts/dirs.sh
# List of dotfiles I want to link to system.
dotfiles=(bashrc gitconfig inputrc imwheelrc vimrc xinitrc Xmodmap Xresources zshrc)
# cd $dot_dir
for dotfile in $dotfiles; do
# Remove system dotfile.
rm ~/."$dotfile"
# Link dotfile in repository to system dotfile.
ln -s "$dot_dir"/"$dotfile" ~/."$dotfile"
done
# }}} link files #
# setup nvim config {{{ #
orig_file="$sys_config_dir"/nvim/init.vim
# Remove system dotfile.
rm "$orig_file"
# Link dotfile in repository to system dotfile.
ln -s "$dot_dir"/nvim "$orig_file"
# }}} setup nvim config #