Fixed up zshrc, as well as alacritty

This commit is contained in:
anthonycicc 2019-06-25 17:15:24 -04:00
parent c87f5d2e92
commit 9150117972
2 changed files with 7 additions and 7 deletions

View file

@ -40,7 +40,7 @@ window:
decorations: full decorations: full
# When true, alacritty starts maximized. # When true, alacritty starts maximized.
start_maximized: true startup_mode: Maximized
scrolling: scrolling:
# Maximum number of lines in the scrollback buffer. # Maximum number of lines in the scrollback buffer.
@ -125,10 +125,11 @@ font:
y: 0 y: 0
# Display the time it takes to redraw each frame. # Display the time it takes to redraw each frame.
render_timer: false debug:
render_timer: false
# Keep the log file after quitting Alacritty. # Keep the log file after quitting Alacritty.
persistent_logging: false persistent_logging: false
# If `true`, bold text is drawn using the bright color variants. # If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true
@ -304,7 +305,7 @@ live_config_reload: true
# You can set `shell.program` to the path of your favorite shell, e.g. `/bin/fish`. # You can set `shell.program` to the path of your favorite shell, e.g. `/bin/fish`.
# Entries in `shell.args` are passed unmodified as arguments to the shell. # Entries in `shell.args` are passed unmodified as arguments to the shell.
shell: shell:
program: /usr/local/bin/zsh program: /usr/bin/zsh
args: args:
- --login - --login
# - "sleep 1 && tmux new -A -s DefaultSession" # - "sleep 1 && tmux new -A -s DefaultSession"

View file

@ -121,8 +121,6 @@ compctl -K _pip_completion pip
# export TERM="tmux-256color" # export TERM="tmux-256color"
export SHELL="/bin/zsh" export SHELL="/bin/zsh"
export PATH="$(yarn global bin):$PATH"
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!! #THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="$HOME/.sdkman" export SDKMAN_DIR="$HOME/.sdkman"
[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh" [[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh"
@ -138,3 +136,4 @@ fi
export PATH="$PATH:$HOME/.anyenv/bin" export PATH="$PATH:$HOME/.anyenv/bin"
eval "$(anyenv init -)" eval "$(anyenv init -)"
export PATH="$(yarn global bin):$PATH"