Sync bat config
This commit is contained in:
parent
48918085d3
commit
88cd731ad8
2 changed files with 9 additions and 0 deletions
5
Makefile
5
Makefile
|
@ -65,6 +65,11 @@ sync-dotconfig:
|
|||
@echo "Micro settings synced!"
|
||||
@echo
|
||||
|
||||
# Bat
|
||||
@$(WGET) $(REPO_SRC)/.config/bat/config -O $(HOME)/.config/bat/config
|
||||
@echo "Bat settings synced!"
|
||||
@echo
|
||||
|
||||
# Topgrade
|
||||
@$(WGET) $(REPO_SRC)/.config/topgrade/topgrade.toml -O $(HOME)/.config/topgrade.toml
|
||||
@echo "Topgrade settings synced!"
|
||||
|
|
|
@ -160,6 +160,10 @@ main() {
|
|||
fish -c "set -Ux MANPAGER \"sh -c 'col -bx | bat -l man -p'\""
|
||||
fish -c "set -Ux MANROFFOPT \"-c\""
|
||||
|
||||
# === Bat config ==
|
||||
mkdir -p "$HOME"/.config/bat
|
||||
wget -q --show-progress ${repo}/.config/bat/config -O "$HOME"/.config/bat/config
|
||||
|
||||
# === Git ==
|
||||
wget -q ${repo}/dotfiles/.gitconfig -O "$HOME"/.gitconfig
|
||||
|
||||
|
|
Loading…
Reference in a new issue