From cd77541819da77cf0ced9790b6d23f449ca598f4 Mon Sep 17 00:00:00 2001 From: jay Date: Sat, 3 Sep 2022 14:04:15 +0800 Subject: [PATCH] [feat] change alacritty font --- alacritty/alacritty.yml | 8 ++++---- zprofile | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index 82510c7..308cf44 100644 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -46,8 +46,8 @@ window: # Blank space added around the window in pixels. This padding is scaled # by DPI and the specified value is always added at both opposing sides. padding: - x: 2 - y: 2 + x: 1 + y: 1 # Spread additional padding evenly around the terminal content. #dynamic_padding: false @@ -113,7 +113,7 @@ font: # - (macOS) Menlo # - (Linux/BSD) monospace # - (Windows) Consolas - family: UbuntuMono Nerd Font Mono + family: JetBrainsMono Nerd Font # The `style` can be specified to pick a specific face. #style: Regular @@ -152,7 +152,7 @@ font: #style: Bold Italic # Point size - size: 12.0 + size: 8.0 # Offset is the extra space around each character. `offset.y` can be thought # of as modifying the line spacing, and `offset.x` as modifying the letter diff --git a/zprofile b/zprofile index 07ef9f9..09438e9 100644 --- a/zprofile +++ b/zprofile @@ -46,6 +46,10 @@ if [ -d "$HOME/bin" ]; then export PATH="$HOME/bin:$PATH" fi +if [ -d "$HOME/.local/bin" ]; then + export PATH="$PATH:$HOME/.local/bin" +fi + # The next line updates PATH for the Google Cloud SDK. if [ -f '/Users/jay/apps/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/jay/apps/google-cloud-sdk/path.zsh.inc'; fi