diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index 80bc3cc..a26188f 100644 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -40,7 +40,7 @@ window: decorations: full # When true, alacritty starts maximized. - start_maximized: true + startup_mode: Maximized scrolling: # Maximum number of lines in the scrollback buffer. @@ -125,10 +125,11 @@ font: y: 0 # Display the time it takes to redraw each frame. -render_timer: false +debug: + render_timer: false -# Keep the log file after quitting Alacritty. -persistent_logging: false + # Keep the log file after quitting Alacritty. + persistent_logging: false # If `true`, bold text is drawn using the bright color variants. 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`. # Entries in `shell.args` are passed unmodified as arguments to the shell. shell: - program: /usr/local/bin/zsh + program: /usr/bin/zsh args: - --login # - "sleep 1 && tmux new -A -s DefaultSession" diff --git a/zsh/zshrc b/zsh/zshrc index ac4358f..8e410cf 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -121,8 +121,6 @@ compctl -K _pip_completion pip # export TERM="tmux-256color" export SHELL="/bin/zsh" -export PATH="$(yarn global bin):$PATH" - #THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!! export SDKMAN_DIR="$HOME/.sdkman" [[ -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" eval "$(anyenv init -)" +export PATH="$(yarn global bin):$PATH"