diff --git a/config/alacritty/alacritty.yml b/config/alacritty/alacritty.yml index 9e79b59..f306259 100644 --- a/config/alacritty/alacritty.yml +++ b/config/alacritty/alacritty.yml @@ -17,6 +17,7 @@ env: # Window dimensions in character columns and lines # (changes require restart) window: + dynamic_title: true dimensions: columns: 130 lines: 40 @@ -39,19 +40,19 @@ draw_bold_text_with_bright_colors: true font: # The normal (roman) font face to use. normal: - family: JetBrainsMono Nerd Font + family: JetBrainsMonoNL Nerd Font Mono # Style can be specified to pick a specific face. style: ExtraLight # The bold font face bold: - family: JetBrainsMono Nerd Font + family: JetBrainsMonoNL Nerd Font Mono # Style can be specified to pick a specific face. style: Bold # The italic font face italic: - family: JetBrainsMono Nerd Font + family: JetBrainsMonoNL Nerd Font Mono # Style can be specified to pick a specific face. style: Italic diff --git a/config/functions b/config/functions index 8b38074..8853987 100755 --- a/config/functions +++ b/config/functions @@ -6,6 +6,12 @@ export DOTFILES="$HOME/.dotfiles" source "$DOTFILES/scripts/shared.sh" +# Alacritty preexec hook to update dynamic title +preexec() +{ + print -Pn "\e]0;$1%~\a" +} + # Weather in Tampere, or other city weather() { diff --git a/config/git/config b/config/git/config index f0f2559..8d6854a 100644 --- a/config/git/config +++ b/config/git/config @@ -5,6 +5,9 @@ name = Ismo Vuorinen email = ismo@ivuorinen.net +[github] + user = ivuorinen + [include] path = ~/.config/git/overrides/config diff --git a/config/starship.toml b/config/starship.toml index 63d10a2..efe5f0a 100644 --- a/config/starship.toml +++ b/config/starship.toml @@ -40,6 +40,8 @@ disabled = true [directory] read_only = " 󰌾" style = "blue" +before_repo_root_style = "white" +truncation_symbol = "…/" [docker_context] symbol = " " diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 7a8ce90..ca60c19 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -67,6 +67,9 @@ bind p paste-buffer # │ Settings │ # ╰──────────────────────────────────────────────────────────╯ +# Expose window title +set-option -g set-titles on + # Mouse support set -g mouse on