From e1e12623f3cb5770354a9c6bdc94fe34212e9784 Mon Sep 17 00:00:00 2001 From: Alexander Goussas Date: Fri, 16 Jan 2026 10:38:23 -0500 Subject: [PATCH] shit --- ghostty/.config/ghostty/config | 5 ++-- nvim/.config/nvim/lua/options.lua | 2 +- zsh/.zshrc | 5 ++++ zsh/.zshrc-e | 44 +++++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+), 3 deletions(-) create mode 100644 zsh/.zshrc-e diff --git a/ghostty/.config/ghostty/config b/ghostty/.config/ghostty/config index 3798573..c56f17e 100644 --- a/ghostty/.config/ghostty/config +++ b/ghostty/.config/ghostty/config @@ -4,7 +4,8 @@ cursor-style = block #maximize = true window-padding-x = 5 window-padding-y = 5 -theme = Adwaita Dark -background-opacity = 0.9 +#background-opacity = 0.95 +theme = Adwaita adjust-cell-height = 10 +#shell-integration-features = ssh-terminfo diff --git a/nvim/.config/nvim/lua/options.lua b/nvim/.config/nvim/lua/options.lua index 9aef071..3020e6c 100644 --- a/nvim/.config/nvim/lua/options.lua +++ b/nvim/.config/nvim/lua/options.lua @@ -21,7 +21,7 @@ vim.o.termguicolors = true vim.g.loaded_netrw = 1 vim.g.loaded_netrwPlugin = 1 -vim.cmd('colorscheme zaibatsu') +vim.cmd('colorscheme vim') -- Conjure options vim.g['conjure#log#diagnostics'] = true diff --git a/zsh/.zshrc b/zsh/.zshrc index 2a89635..4486c24 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -39,3 +39,8 @@ if [ -f '/Users/alexandergoussas/Documents/google-cloud-sdk/completion.zsh.inc' # bun export BUN_INSTALL="$HOME/.bun" export PATH="$BUN_INSTALL/bin:$PATH" +export PATH="/opt/homebrew/opt/ruby/bin:$PATH" +export PATH="/Users/alexandergoussas/.gem/ruby/3.4.0/bin:$PATH" +export PATH="/opt/homebrew/opt/ruby/bin:$PATH" + +[ -f "/Users/alexandergoussas/.ghcup/env" ] && . "/Users/alexandergoussas/.ghcup/env" # ghcup-env \ No newline at end of file diff --git a/zsh/.zshrc-e b/zsh/.zshrc-e new file mode 100644 index 0000000..0e312a2 --- /dev/null +++ b/zsh/.zshrc-e @@ -0,0 +1,44 @@ +if command -v oh-my-posh >/dev/null; then + eval "$(oh-my-posh init zsh --config $(brew --prefix oh-my-posh)/themes/material.omp.json)" +fi + +export SDKMAN_DIR="$HOME/.sdkman" +[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh" + +alias ls='ls --color=auto' +alias gs='git status' + + +PATH="$PATH:$HOME/go/bin" +PATH="$PATH:$HOME/.cabal/bin" +PATH="$PATH:$HOME/Library/Python/3.9/bin" +PATH="$PATH:$HOME/.cache/rebar3/bin" +PATH="$PATH:/usr/local/opt/" +export PATH + +[ -f "$HOME/.ghcup/env" ] && . "$HOME/.ghcup/env" +[ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env" + +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm +[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion + +export ANDROID_HOME="$HOME"/Library/Android/sdk +export PATH=$ANDROID_HOME/platform-tools:$PATH +export PATH=$ANDROID_HOME/tools:$PATH + +# The next line updates PATH for the Google Cloud SDK. +if [ -f '/Users/alexandergoussas/Documents/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/alexandergoussas/Documents/google-cloud-sdk/path.zsh.inc'; fi + +# The next line enables shell command completion for gcloud. +if [ -f '/Users/alexandergoussas/Documents/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/alexandergoussas/Documents/google-cloud-sdk/completion.zsh.inc'; fi + +# bun completions +[ -s "/Users/alexandergoussas/.bun/_bun" ] && source "/Users/alexandergoussas/.bun/_bun" + +# bun +export BUN_INSTALL="$HOME/.bun" +export PATH="$BUN_INSTALL/bin:$PATH" +export PATH="/opt/homebrew/opt/ruby/bin:$PATH" +export PATH="/Users/alexandergoussas/.gem/ruby/3.4.0/bin:$PATH" +export PATH="/opt/homebrew/opt/ruby/bin:$PATH" -- 2.43.0