From aed6c1d53351a9dd806c56f85d55630a1dcc6ed2 Mon Sep 17 00:00:00 2001 From: Sam Vente Date: Fri, 19 Apr 2024 19:34:46 +0200 Subject: [PATCH] add paru and pacman conf --- fish/config.fish | 1 - pacman.conf | 17 +++++++++++++++++ paru/paru.conf | 20 ++++++++++++++++++++ setup/arch/setup.sh | 2 ++ 4 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 pacman.conf create mode 100644 paru/paru.conf diff --git a/fish/config.fish b/fish/config.fish index e7deb3e..08d878b 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -27,7 +27,6 @@ if status is-interactive abbr --add glo git log --graph --decorate --pretty=oneline --abbrev-commit abbr --add gu gitui - # fish keeps trying to steal my quotes >:( abbr --add gbr -- git branch --format='\'%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(contents:subject) %(color:blue)(%(committerdate:short)) [%(authorname)]\'' diff --git a/pacman.conf b/pacman.conf new file mode 100644 index 0000000..ff16eff --- /dev/null +++ b/pacman.conf @@ -0,0 +1,17 @@ +[options] +HoldPkg = pacman glibc +Architecture = auto + +Color +CheckSpace +ParallelDownloads = 5 + +SigLevel = Required DatabaseOptional +LocalFileSigLevel = Optional + +[core] +Include = /etc/pacman.d/mirrorlist + +[extra] +Include = /etc/pacman.d/mirrorlist + diff --git a/paru/paru.conf b/paru/paru.conf new file mode 100644 index 0000000..e79b046 --- /dev/null +++ b/paru/paru.conf @@ -0,0 +1,20 @@ +# +# $PARU_CONF +# /etc/paru.conf +# ~/.config/paru/paru.conf +# +# See the paru.conf(5) manpage for options + +[options] +PgpFetch +Devel +Provides +DevelSuffixes = -git -cvs -svn -bzr -darcs -always -hg -fossil +Limit = 25 +BottomUp + +[bin] +#FileManager = vifm +#MFlags = --skippgpcheck +#Sudo = doas +Bat = bat diff --git a/setup/arch/setup.sh b/setup/arch/setup.sh index 33ece00..e1a3b9e 100644 --- a/setup/arch/setup.sh +++ b/setup/arch/setup.sh @@ -71,6 +71,8 @@ function setup_dev_stuff() { ln -s ~/Documents/dotfiles/starship.toml ~/.config/starship.toml -f ln -s ~/Documents/dotfiles/topgrade.toml ~/.config/topgrade.toml -f ln -s ~/Documents/dotfiles/fish ~/.config/ -f + ln -s ~/Documents/dotfiles/paru/ ~/.config/ -f + ln -s ~/Documents/dotfiles/pacman.conf /etc/pacman.conf -f }