Skip to content

Commit e4c6edf

Browse files
committed
More updates
1 parent 23438ef commit e4c6edf

19 files changed

+40
-32
lines changed

.chezmoiignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.config/nvim/lazy-lock.json
1+
.config/github-copilot/versions.json
22
zshrc.darwin
33
zshrc.linux
44
README.md

dot_config/kitty/kitty.conf

+11-7
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
#font_family FiraCode Nerd Font Mono
1010
#font_family Maple Mono Light
11-
font_family MMTweak NF Light
12-
bold_font MMTweak NF Regular
13-
italic_font MMTweak NF Light
14-
bold_italic_font MMTweak NF Regular
11+
font_family MMTweak Light
12+
bold_font MMTweak Regular
13+
italic_font MMTweak Light
14+
bold_italic_font MMTweak Regular
1515

1616
#: You can specify different fonts for the bold/italic/bold-italic
1717
#: variants. By default they are derived automatically, by the OSes
@@ -40,6 +40,8 @@ adjust_column_width 0
4040

4141
# symbol_map U+E0A0-U+E0A2,U+E0B0-U+E0B3 PowerlineSymbols
4242

43+
symbol_map U+23FB-U+23FE,U+2665,U+26A1,U+2B58,U+E000-U+E00A,U+E0A0-U+E0A3,U+E0B0-U+E0D4,U+E200-U+E2A9,U+E300-U+E3E3,U+E5FA-U+E6AA,U+E700-U+E7C5,U+EA60-U+EBEB,U+F000-U+F2E0,U+F300-U+F32F,U+F400-U+F4A9,U+F500-U+F8FF,U+F0001-U+F1AF0 Symbols Nerd Font Mono
44+
4345
#: Map the specified unicode codepoints to a particular font. Useful
4446
#: if you need special rendering for some symbols, such as for
4547
#: Powerline. Avoids the need for patched fonts. Each unicode code
@@ -421,15 +423,17 @@ color15 #ffffff
421423

422424
#: Advanced {{{
423425

424-
shell /usr/local/bin/zsh
426+
shell /opt/homebrew/bin/zsh
427+
425428

426429
#: The shell program to execute. The default value of . means to use
427430
#: whatever shell is set as the default shell for the current user.
428431
#: Note that on macOS if you change this, you might need to add
429432
#: --login to ensure that the shell starts in interactive mode and
430433
#: reads its startup rc files.
431434

432-
editor /usr/local/bin/nvim
435+
editor /opt/homebrew/bin/nvim
436+
433437

434438
#: The console editor to use when editing the kitty config file or
435439
#: similar tasks. A value of . means to use the environment variable
@@ -886,6 +890,6 @@ map cmd+4 send_text application \x1bOP4
886890
map cmd+shift+[ send_text application \x1bOPp
887891
map cmd+shift+] send_text application \x1bOPn
888892
map kitty_mod+enter new_os_window kitty +kitten ssh -A ubuntu.local
889-
map kitty_mod+space new_os_window kitty +kitten ssh -A work.local
893+
map kitty_mod+space new_os_window kitty +kitten ssh -A 10.147.17.143
890894

891895
include gruvbox.conf

dot_tmux.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ bind-key C command-prompt -p "Name of new window: " "new-window -n '%%'"
9191
# reload config
9292
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
9393

94-
set -g default-terminal "tmux-256color"
94+
set -g default-terminal "xterm-kitty"
9595

9696
set-option -sa terminal-features ',xterm-kitty:RGB'
9797
set -as terminal-overrides ',screen-256color*:Tc:sitm=\E[3m'

dot_zsh_plugins

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
ohmyzsh/ohmyzsh path:lib/key-bindings.zsh
22
ohmyzsh/ohmyzsh path:lib/directories.zsh, kind:defer
3+
ohmyzsh/ohmyzsh path:plugins/aws kind:defer
34
ohmyzsh/ohmyzsh path:plugins/git kind:defer
45
ohmyzsh/ohmyzsh path:plugins/github kind:defer
6+
ohmyzsh/ohmyzsh path:plugins/kitty kind:defer
57

68
zsh-users/zsh-completions path:src kind:fpath
79
zsh-users/zsh-syntax-highlighting kind:defer

dot_zshrc.tmpl

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export LANG=en_US.UTF-8
44
export EDITOR=nvim
55
export COLORTERM=truecolor
66

7-
export PATH=$PATH:~/.bin:~/.local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:~/code/lua-language-server/bin
7+
export PATH=$PATH:~/.bin:~/.local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:~/code/lua-language-server/bin:/opt/homebrew/bin
88
export PATH="/usr/local/opt/openssl/bin:$PATH"
99
export PATH="/usr/local/sbin:$PATH"
1010
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
@@ -28,6 +28,7 @@ if [[ ! ${zsh_plugins}.zsh -nt ${zsh_plugins} ]]; then
2828
antidote bundle <${zsh_plugins} >|${zsh_plugins}.zsh
2929
fi
3030

31+
autoload bashcompinit && bashcompinit
3132
autoload -Uz compinit
3233
compinit
3334

mmtweak-font/MMTweak-Bold.otf

94.7 KB
Binary file not shown.

mmtweak-font/MMTweak-BoldItalic.otf

97.9 KB
Binary file not shown.

mmtweak-font/MMTweak-Italic.otf

98.1 KB
Binary file not shown.

mmtweak-font/MMTweak-Light.otf

95.1 KB
Binary file not shown.

mmtweak-font/MMTweak-LightItalic.otf

98.7 KB
Binary file not shown.

mmtweak-font/MMTweak-NF-Bold.ttf

-1.89 MB
Binary file not shown.
-1.89 MB
Binary file not shown.

mmtweak-font/MMTweak-NF-Italic.ttf

-1.88 MB
Binary file not shown.

mmtweak-font/MMTweak-NF-Light.ttf

-1.88 MB
Binary file not shown.
-1.89 MB
Binary file not shown.

mmtweak-font/MMTweak-NF-Regular.ttf

-1.88 MB
Binary file not shown.

mmtweak-font/MMTweak-Regular.otf

95.2 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
-----BEGIN AGE ENCRYPTED FILE-----
2-
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBmc2lGaU44aXBYZ09Ec1pG
3-
ekt3eHpzL2FNTisweDhTVit2Y2VYYzcwb2tFCnh2aWZFNTl6YklUQU80cTFBRUlV
4-
ZklnQi82UjhCcXhVRCtDdXhHRjhtWE0KLS0tIE9yM0RLQmZQTUFYUDlGZzZLOXha
5-
NmhlWGJjZkxwOEZtSXY3NjBrenhhT1kK4DJZ5HTnJWNsrsTVMegagKpZJk7yCM1r
6-
D0S5B8Y1y8OT8ftpXtDdHTspKtboDblUqE5ph2vEdfnXcDjVWGfD0lHVqOQddLWo
7-
BE/uDfK70BEkzQHleDwAoamIk6gwTazSV9f1tam2H3dWj2nCWqiiCdASDZNEcC36
8-
0TdNSNKf3z1mGPPa1hkGNZI9I9L+MzSfP+/MY1uJDcrIAwsPJ+EFONIY2DKvSBpM
9-
VImcuvTxm9qVv+jEJkho3pxNMuF0odptDDH28b9UbPStweqd30nXl1YAPC1I85et
10-
BndH0jUVwlDMC1XtCfsoGbvoiSmxxWuV0o4mXQDnSxcu/sjsXsUGdnYnD8Vv6Ahi
11-
ixoZZLv7K9IJKyE+ajMwKj7UlaWKtEP+I2AZKCpgpWRGM1yKb7KUs+6zVhlqys4W
12-
y/52hSFQSU/63dEYNwxdhaZKOjsqNxaPCRQxxIOJ/CtdscJ5viqBBxFaLEwZ9qOq
13-
R+jNU5PEcfcCwiTuIW5f8Ql/U5KomgNq2+DGjWCM5MVHu1gEMK/suQ+cdjpsJoVR
14-
O32Pb/CP+WvzyIxUTU5SZJigTCRAwL5LSQU3MlUHpPr41Gl/u9xrDeb/SUnNl/zl
15-
Li0uIExpkK6lvizKu2GgZaxssBY1Cr+/XZubS/QE5Ew8p9SgDlY0hSFzovg/mG1o
16-
CwCPXG6X167PagzUIPIurWtmK6wD5XKRuiRsF4VvXbd3+fRMo4Eajel/zoDb4xMM
17-
LoLX+Gsk/yG0JgnF+e0d+VLqCQ7N3dX14O8RuRJnt5XPddI2vhBzCVSkQ/llfniv
18-
ziIS4hfEtl+KM4k3ZojHHn3egaX3xywQQMwMxiR9Vu0PTAAAA8OSflpk0gQYDmuz
19-
qStGHa1otIyhAWl/2LcWkSsYZfOyz7R9OqqUMVzLABWLmOKlk8PCxaWdkqFpx3Gv
20-
i4o8mdBjV4oiqepdnKCkWfTXhz8UWgFDZOy+ljI2on2NpXVzX0+LQnrwtoGQk7sZ
21-
bSg93pUcC4D3zQfoZrt/DNLvFaIu3gLqsthlIF9qsM9UW2lRSLASPvesAwACGPKi
22-
w1sVCGQI9xAfRtPV1RpdghNt3/kgKd1cxEZHghG38RqK0eKKbFRHX0tYhJmD/kfb
23-
3x/3GuRk97f3b2Eo
2+
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBDSVNuM1hqWlo0b2Jxdk9q
3+
dHVnL0tLZ2hkR3pkdXA1SVRPd3Z0TENLK25vCmE0VGtIcVd0a0hrNjV0QzB2TEJH
4+
RDIyRW54bUFuczlXSU5qN2o2L0pPZGsKLS0tIGgwdmdyZUZKSS9lM0RVdUlIUjFh
5+
c1ZYVnBCNDBacWJKRWlnYzlhVEJqSnMKRLzwcjc1BqQUJO+Dt5K5TcGSGvGseEdh
6+
yLKcQuBapeRgVs5s/DdlEXQ/NsExLxqixMtQFjfGLxTkqh9FlMLQHJmgyNrBIfpo
7+
Sn4rVxlXQmD2M5B4D/Ooc+wyW10Q+YVwfAkXkd6turWdGOyP4eqkzOdgbo/hDCIv
8+
VDG+mQHm2TByPnE5XRT9vacJ8qclPjWqI3lMAotMvyr70lNLyOc5druKbA/wrZCH
9+
TQZSAfOKqSzxxgjaNS8dR8n1s2GCYJ64qP97vkFmsnyuCPdmaOdRRO5zg7w/2ZDZ
10+
faq1I1kjh4M4Ds0MgRa9R3et/pDOI2T8zILCxxlh4m0pMFNUIQ2CiFgFA/iLN/Cz
11+
xg+dfxfKF48FZz6fY+vtIvMNGf4bL9vtbxSycJdvR6XhWUc3QED+TparjAznx8XV
12+
YHpd3EQyDQLEuNMtz+3njV5voijWMh08n/WsxOHtpcuSdtAmSUDWT92A1erd20Zp
13+
dzHYELvYUHIeZhouggvaPYRKMAlQGVd/pdnULRdJCyh0Lr8/6WCg2zDSY9tE+Edy
14+
FEZt7BwTUEvqWr7f1DAhNFXWzw5OvCbfSlQuJvcarnfOhiEm3dcvff8hI8yJy9ZH
15+
Z1Kj1Y26/1b9TWuOvcd1EdwWRBQUOKrox9Quobb13QjgNtzj621T/7u/PIcorJ+/
16+
GjLv5FuQt5VAahPxSX7gkr6fLKUPftvF9BITUnftzmpub2CZ8J44hESsz0LoUdwi
17+
0KdLdlIma9MvhvnDSjhu25AbY1cZPNNosy7B/QGhanWUQ56IyV86msfK6ObyMt7f
18+
GabCmPvd9gf1phRovZyUGxy5mI7cMRXSPRwgl+VPbazNcI+ATOResxVzn/KLpgH1
19+
mO/015DHEI7AJpd3qHqLA225x09yWsPRIZcpvJQ0j11bFL5TjuIWtgtgSLIt8fa+
20+
YAYK6tOQbPQv1NnGpfCpXQvBK53yHwXXDaTj2SEMPZ+y2bzQDhcWmLQ59UReFom4
21+
iD4ZbY9eQ20i4UGcjsu7j7kAzUSpPX2u50ZnxbDH2NTYFmWPllsCzSF1+h2l75st
22+
HPC+XU16ajVOvCtNuKxH8VP+X+tKKeitzxcCbRbQsNXDAoJaEp/Ge7vmo5H8b7rA
23+
7KBmUD0lNILCjPT+Q9s/Yjk=
2424
-----END AGE ENCRYPTED FILE-----

zshrc.darwin

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
export SSH_AUTH_SOCK=~/.1password/agent.sock
12
# Always use Tmux
23
if [[ -z "$TMUX" && -z "$VIM" ]]
34
then

0 commit comments

Comments
 (0)