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