Skip to content

Commit 9518a0c

Browse files
committed
some zsh stuffs
1 parent a38a628 commit 9518a0c

5 files changed

Lines changed: 16 additions & 9 deletions

File tree

home/.zshenv

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@ fi
2828
# fi
2929
# if [ -e /home/tj/.nix-profile/etc/profile.d/nix.sh ]; then . /home/tj/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
3030
# if [ -e /home/tjdevries/.nix-profile/etc/profile.d/nix.sh ]; then . /home/tjdevries/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
31+
# if [ -e /home/tj/.nix-profile/etc/profile.d/nix.sh ]; then . /home/tj/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
32+
33+
. "$HOME/.cargo/env"

xdg_config/kitty/kitty.conf

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# Font configuration
2-
font_family JetBrains Mono Regular Nerd Font Complete Mono
3-
bold_font JetBrains Mono Bold Nerd Font Complete Mono
4-
italic_font JetBrains Mono Italic Nerd Font Complete Mono
5-
bold_italic_font JetBrains Mono Bold Italic Nerd Font Complete Mono
2+
font_family JetBrainsMono Nerd Font Mono Regular
3+
bold_font JetBrainsMono Nerd Font Mono Bold
4+
italic_font JetBrainsMono Nerd Font Mono Italic
5+
bold_italic_font JetBrainsMono Nerd Font Mono Bold Italic
66

7-
#
87
# italic_font JetBrains Mono Italic Nerd Font Complete Mono
98
# bold_font Jetbrains Mono Bold
109

@@ -28,7 +27,7 @@ background #282c34
2827
dynamic_background_opacity true
2928

3029
# from nvim-nonicons
31-
symbol_map U+f101-U+f208 nonicon
30+
# symbol_map U+f101-U+f208 nonicon regular
3231

3332
map ctrl+shift+q noop
3433
map ctrl+shift+w noop

xdg_config/zsh/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.zsh_history
2+
.zsh_sessions/

xdg_config/zsh/.zprofile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
export PATH="$HOME/.cargo/bin:$PATH"
32

43
if hash nvim 2>/dev/null; then
54
export EDITOR=nvim
@@ -9,3 +8,5 @@ if hash nvim 2>/dev/null; then
98
else
109
export EDITOR=vim
1110
fi
11+
12+
eval "$(/opt/homebrew/bin/brew shellenv)"

xdg_config/zsh/.zshrc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,10 @@ fi
208208
export PATH="$HOME/.local/bin/:$PATH"
209209

210210
if [ -f "$HOME/.asdf/asdf.sh" ]; then
211-
. $HOME/.asdf/asdf.sh
212-
. $HOME/.asdf/completions/asdf.bash
211+
# . $HOME/.asdf/asdf.sh
212+
# . $HOME/.asdf/completions/asdf.bash
213+
214+
. /opt/homebrew/opt/asdf/libexec/asdf.sh
213215
fi
214216

215217

0 commit comments

Comments
 (0)