]> git.frustrated-labs.net Git - dotfiles.git/commitdiff
shit
authorAlexander Goussas <[email protected]>
Fri, 16 Jan 2026 15:38:23 +0000 (10:38 -0500)
committerAlexander Goussas <[email protected]>
Fri, 16 Jan 2026 15:38:23 +0000 (10:38 -0500)
ghostty/.config/ghostty/config
nvim/.config/nvim/lua/options.lua
zsh/.zshrc
zsh/.zshrc-e [new file with mode: 0644]

index 37985737b60954bbae09560f19468a46199cce9c..c56f17eb919760580d8578e290b62fe99bd82298 100644 (file)
@@ -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
index 9aef07142735ea9862b3c7d8b4bec3df2ba72604..3020e6c47b0b96db0c8d610c2444fef8e625943c 100644 (file)
@@ -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
index 2a89635026ebbdffb5de07f67e4f6c7e9c601e34..4486c24167b886d6dcb1f7758db12d2856d6290e 100644 (file)
@@ -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 (file)
index 0000000..0e312a2
--- /dev/null
@@ -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"