+10
-2
.config/alacritty/alacritty.toml
+10
-2
.config/alacritty/alacritty.toml
···
1
import = [
2
"~/.config/alacritty/themes/themes/tokyo-night.toml",
3
+
#"~/.config/alacritty/catppuccin-mocha.toml",
4
+
#"~/.config/alacritty/themes/themes/gruvbox_dark.toml",
5
]
6
7
[shell]
···
9
args = ["new-session", "-A", "-s", "general"]
10
11
[window]
12
+
opacity = 0.80
13
+
14
+
[font]
15
+
normal= { family= "FiraCode Nerd Font Mono", style= "Medium" }
16
+
bold= { family= "FiraCode Nerd Font Mono", style= "Bold" }
17
+
italic= { family= "FiraCode Nerd Font Mono", style= "Retina" }
18
+
bold_italic= { family= "FiraCode Nerd Font Mono", style= "SemiBold" }
19
+
size = 9.5
+3
.vimrc
+3
.vimrc
···
52
Plugin 'ryanoasis/vim-devicons'
53
Plugin 'junegunn/fzf', { 'do': { -> fzf#install() } }
54
Plugin 'junegunn/fzf.vim'
55
+
Plugin 'kadekillary/Turtles'
56
57
call vundle#end()
58
filetype plugin indent on
···
123
124
" Minimalist NERDTree
125
let NERDTreeMinimalUI=1
126
+
127
+
let g:ycm_clangd_binary_path = trim(system('brew --prefix llvm')).'/bin/clangd'
+9
.zshrc
+9
.zshrc
···
7
alias ngrok='/Applications/ngrok'
8
alias cat='bat'
9
10
11
# Set name of the theme to load --- if set to "random", it will
12
# load a random theme each time oh-my-zsh is loaded, in which case,
···
115
export PATH="$HOME/.gem/ruby/2.6.0/bin:$PATH"
116
export PATH="/usr/local/opt/ruby/bin:$PATH"
117
export PATH="/usr/local/opt/ruby/bin:/usr/local/lib/ruby/gems/3.0.0/bin:$PATH"
···
7
alias ngrok='/Applications/ngrok'
8
alias cat='bat'
9
10
+
export PYTHONPATH=$(brew --prefix)/lib/python3.13/site-packages
11
+
12
+
pw() {
13
+
branch=${1:-'origin/main'}
14
+
git add -p && git commit -m 'wip' && git fetch && git rebase $branch && git push --force-with-lease
15
+
}
16
+
17
+
JSII_SILENCE_WARNING_UNTESTED_NODE_VERSION=1
18
19
# Set name of the theme to load --- if set to "random", it will
20
# load a random theme each time oh-my-zsh is loaded, in which case,
···
123
export PATH="$HOME/.gem/ruby/2.6.0/bin:$PATH"
124
export PATH="/usr/local/opt/ruby/bin:$PATH"
125
export PATH="/usr/local/opt/ruby/bin:/usr/local/lib/ruby/gems/3.0.0/bin:$PATH"
126
+
export PATH="/opt/homebrew/opt/postgresql@15/bin:$PATH"