update for new macos and mac+arm

This commit is contained in:
2022-04-26 12:44:15 +02:00
parent ef3966492e
commit bec0ce88a2
4 changed files with 11 additions and 20 deletions

View File

@@ -1,4 +1,3 @@
background_opacity: 1.0
colors: colors:
bright: bright:
black: '0x666666' black: '0x666666'
@@ -36,7 +35,7 @@ colors:
cursor_style: Block cursor_style: Block
custom_cursor_colors: true custom_cursor_colors: true
debug: debug:
log_level: None log_level: OFF
persistent_logging: false persistent_logging: false
print_events: false print_events: false
ref_test: false ref_test: false
@@ -409,11 +408,6 @@ mouse:
hide_when_typing: false hide_when_typing: false
triple_click: triple_click:
threshold: 300 threshold: 300
url:
launcher:
args: []
program: open
modifiers: None
mouse_bindings: mouse_bindings:
- action: PasteSelection - action: PasteSelection
mouse: Middle mouse: Middle
@@ -427,7 +421,7 @@ selection:
semantic_escape_chars: ",\u2502`|:\"' ()[]{}<>" semantic_escape_chars: ",\u2502`|:\"' ()[]{}<>"
shell: shell:
args: [] args: []
program: /usr/local/bin/zsh program: /opt/homebrew/bin/zsh
tabspaces: 8 tabspaces: 8
unfocused_hollow_cursor: true unfocused_hollow_cursor: true
visual_bell: visual_bell:
@@ -439,6 +433,7 @@ window:
columns: 80 columns: 80
lines: 24 lines: 24
dynamic_padding: false dynamic_padding: false
opacity: 1.0
padding: padding:
x: 2 x: 2
y: 2 y: 2

View File

@@ -84,7 +84,7 @@
default = simple default = simple
[user] [user]
name = hellerve name = Veit Heller
email = veit@veitheller.de email = veit@veitheller.de
[credential] [credential]
helper = osxkeychain helper = osxkeychain

View File

@@ -31,4 +31,4 @@
(setf *prompt* (colorize :bold (colorize :blue "λ "))) (setf *prompt* (colorize :bold (colorize :blue "λ ")))
(setf *prompt2* (colorize :bold (colorize :blue "λ₂ "))) (setf *prompt2* (colorize :bold (colorize :blue "λ₂ ")))
(setf *ret* (colorize :bold (colorize :red "⇒ "))) (setf *ret* (colorize :bold (colorize :red "⇒ ")))
(setf *pygmentize* nil) (setf *pygmentize* "/usr/local/bin/pygmentize")

16
zshrc
View File

@@ -27,13 +27,14 @@ export GHC_HOME=/usr/local/bin
export CABAL_HOME=$HOME/.cabal/ export CABAL_HOME=$HOME/.cabal/
export SCRIPTS_HOME=$HOME/.scripts export SCRIPTS_HOME=$HOME/.scripts
export GH_HOME=~/Documents/Code/Github export GH_HOME=~/Documents/Code/Github
export PATH=/usr/local/opt/python/bin:$GHC_HOME:$PATH:$CABAL_HOME/bin:/opt/local/bin:/usr/local/sbin:/usr/local/opt/llvm/bin:~/.local/bin:$GOBIN:$SCRIPTS_HOME:$TEXBIN:$GH_HOME/ut/sandboxtron/bin export PATH=/usr/local/opt/python/bin:$GHC_HOME:$PATH:$CABAL_HOME/bin:/opt/local/bin:/usr/local/sbin:/usr/local/opt/llvm/bin:~/.local/bin:$GOBIN:$SCRIPTS_HOME:$TEXBIN:$GH_HOME/ut/sandboxtron/bin:/opt/homebrew/bin
export MANPATH=$MANPATH:/opt/local/share/man:/usr/local/opt/erlang/lib/erlang/man export MANPATH=$MANPATH:/opt/local/share/man:/usr/local/opt/erlang/lib/erlang/man
export INFOPATH=$INFOPATH:/opt/local/share/info export INFOPATH=$INFOPATH:/opt/local/share/info
export PYTHONSTARTUP=~/.pythonrc export PYTHONSTARTUP=~/.pythonrc
export NODE_PATH=/usr/local/lib/node_modules export NODE_PATH=/usr/local/lib/node_modules
export TERM=rxvt
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
export TERMINFO='/usr/share/terminfo/'
export TERM=xterm-256color
export LC_ALL=$LANG export LC_ALL=$LANG
export JAVA_HOME=`/usr/libexec/java_home -v 9` export JAVA_HOME=`/usr/libexec/java_home -v 9`
export CARP_DIR=$GH_HOME/carp/Carp/ export CARP_DIR=$GH_HOME/carp/Carp/
@@ -71,13 +72,7 @@ preexec () {print -Pn "\e]2; %~/ \a"}
case $TERM in case $TERM in
xterm*) xterm*)
precmd(){print -Pn "\e]0;%m: %~\a"} precmd(){print -Pn "\e]0;%m: %~\a"} ;;
ssh(){
PRENAME="`dcop $KONSOLE_DCOP_SESSION sessionName`";
dcop "$KONSOLE_DCOP_SESSION" renameSession "$@";
/usr/bin/ssh "$@";
dcop "$KONSOLE_DCOP_SESSION" renameSession "$PRENAME"
} ;;
esac esac
function rprompt-git-current-branch { function rprompt-git-current-branch {
@@ -114,7 +109,6 @@ save_dotfiles(){
cp -r ~/.scripts ${DOTPATH} cp -r ~/.scripts ${DOTPATH}
cp ~/.config/carp/profile.carp ${DOTPATH} cp ~/.config/carp/profile.carp ${DOTPATH}
cp ~/.config/alacritty/alacritty.yml ${DOTPATH} cp ~/.config/alacritty/alacritty.yml ${DOTPATH}
cp ~/.erc ${DOTPATH}erc
cp ~/.gitconfig ${DOTPATH}gitconfig cp ~/.gitconfig ${DOTPATH}gitconfig
cp ~/.gitignore ${DOTPATH}gitignore cp ~/.gitignore ${DOTPATH}gitignore
cp ~/.inputrc ${DOTPATH}inputrc cp ~/.inputrc ${DOTPATH}inputrc
@@ -196,3 +190,5 @@ function ghcl {
fortune | cowsay -f koala fortune | cowsay -f koala
remind remind
export PATH="/usr/local/opt/libpq/bin:$PATH"
export PATH="/usr/local/opt/openssl@3/bin:$PATH"