From 24ce7e1206076c519e1e75cf87fbd50bee73e9c0 Mon Sep 17 00:00:00 2001 From: hellerve Date: Sat, 7 Nov 2020 14:40:24 +0100 Subject: [PATCH] update carp saving --- Makefile | 3 ++- carp/profile.carp => profile.carp | 1 + sbclirc | 2 +- zshrc | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) rename carp/profile.carp => profile.carp (68%) diff --git a/Makefile b/Makefile index 6dab89a..02eb848 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,8 @@ alacritty: cp alacritty.yml ~/.config/alacritty carp: - cp -r carp ~/.carp + mkdir -p ~/.config/carp + cp profile.carp ~/.config/carp e: cp erc ~/.erc diff --git a/carp/profile.carp b/profile.carp similarity index 68% rename from carp/profile.carp rename to profile.carp index 44affd0..8a96a69 100644 --- a/carp/profile.carp +++ b/profile.carp @@ -1 +1,2 @@ (Project.config "output-directory" "/Users/veitheller/.carp/out/") +(Project.config "prompt" "> ") diff --git a/sbclirc b/sbclirc index 1492354..2be1dc8 100644 --- a/sbclirc +++ b/sbclirc @@ -31,4 +31,4 @@ (setf *prompt* (colorize :bold (colorize :blue "λ "))) (setf *prompt2* (colorize :bold (colorize :blue "λ₂ "))) (setf *ret* (colorize :bold (colorize :red "⇒ "))) -;(setf *pygmentize* "/usr/local/bin/pygmentize") +(setf *pygmentize* "/usr/local/bin/pygmentize") diff --git a/zshrc b/zshrc index 7be555b..cc84ab5 100644 --- a/zshrc +++ b/zshrc @@ -118,7 +118,7 @@ RPROMPT+="%{$reset_color%}%{$fg[yellow]%}%~%{$reset_color%}" save_dotfiles(){ local DOTPATH=~/Documents/Code/Github/.dotfiles/ cp -r ~/.scripts ${DOTPATH} - rsync -av --exclude="libs" --exclude="history" --exclude="out" ~/.carp/ ${DOTPATH}carp > /dev/null + cp ~/.config/carp/profile.carp ${DOTPATH} cp ~/.config/alacritty/alacritty.yml ${DOTPATH} cp ~/.erc ${DOTPATH}erc cp ~/.gitconfig ${DOTPATH}gitconfig