dotfiles
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add neovim

+22 -2
+10 -2
.config/alacritty/alacritty.toml
··· 1 1 import = [ 2 2 "~/.config/alacritty/themes/themes/tokyo-night.toml", 3 - "~/.config/alacritty/themes/themes/gruvbox_dark.toml", 3 + #"~/.config/alacritty/catppuccin-mocha.toml", 4 + #"~/.config/alacritty/themes/themes/gruvbox_dark.toml", 4 5 ] 5 6 6 7 [shell] ··· 8 9 args = ["new-session", "-A", "-s", "general"] 9 10 10 11 [window] 11 - opacity = 0.60 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
··· 52 52 Plugin 'ryanoasis/vim-devicons' 53 53 Plugin 'junegunn/fzf', { 'do': { -> fzf#install() } } 54 54 Plugin 'junegunn/fzf.vim' 55 + Plugin 'kadekillary/Turtles' 55 56 56 57 call vundle#end() 57 58 filetype plugin indent on ··· 122 123 123 124 " Minimalist NERDTree 124 125 let NERDTreeMinimalUI=1 126 + 127 + let g:ycm_clangd_binary_path = trim(system('brew --prefix llvm')).'/bin/clangd'
+9
.zshrc
··· 7 7 alias ngrok='/Applications/ngrok' 8 8 alias cat='bat' 9 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 10 18 11 19 # Set name of the theme to load --- if set to "random", it will 12 20 # load a random theme each time oh-my-zsh is loaded, in which case, ··· 115 123 export PATH="$HOME/.gem/ruby/2.6.0/bin:$PATH" 116 124 export PATH="/usr/local/opt/ruby/bin:$PATH" 117 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"