summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-10-25 16:10:34 +0200
committerAhmed Abdelhalim <[email protected]>2025-10-25 16:32:12 +0200
commit598fe65f17c24c9f90cbde57e2791964b269164e (patch)
tree0d96aec4aa62eb9b598c2ff160677b15bb92e19d
parent6a3f24d85059942b6030f494feacc48c5913c255 (diff)
Clean up/remove unused tools
-rw-r--r--.bash_profile25
-rw-r--r--.stow-local-ignore1
-rw-r--r--Brewfile1
-rw-r--r--MacOS.md9
4 files changed, 2 insertions, 34 deletions
diff --git a/.bash_profile b/.bash_profile
index 59bda85..bec6eeb 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -32,7 +32,6 @@ export USE_GKE_GCLOUD_AUTH_PLUGIN=True
shopt -s checkwinsize # check the window size after each command and, if necessary, update LINES/COLUMNS
# ==== Aliases
-alias wttr='curl http://wttr.in/berlin'
alias la='ls -a'
alias dirs="dirs -v"
alias srv="python3 -m http.server" # start simple server
@@ -81,24 +80,6 @@ if command -v rbenv 1>/dev/null 2>&1; then
eval "$(rbenv init -)"
fi
-# ==== pyenv config (and virtualenv)
-if command -v pyenv 1>/dev/null 2>&1; then
- eval "$(pyenv init --path)"
- eval "$(pyenv init -)"
- export PIPENV_VENV_IN_PROJECT=1
- export PATH="$HOME/.local/bin:$PATH"
-fi
-
-# ==== python/pipx config.
-if command -v pipx 1>/dev/null 2>&1; then
- export PATH="$PATH:$HOME/.local/bin"
-fi
-
-# ==== Rust config
-if [ -f "$HOME/.cargo/env" ]; then
- source "$HOME/.cargo/env"
-fi
-
# ==== NVM config
# node version manager from homebrew ,the source line to move install location
# and prevent Node installs being lost upon upgrading nvm.
@@ -107,12 +88,6 @@ if [ -f "$(brew --prefix nvm)/nvm.sh" ]; then
source "$(brew --prefix nvm)/nvm.sh"
fi
-# ==== MISC config
-if command -v thefuck 1>/dev/null 2>&1; then
- # allow fuck to be alias of thefuck
- eval "$(thefuck --alias)"
-fi
-
# ==== Vault completeion
if command -v vault 1>/dev/null 2>&1; then
complete -C "$(brew --prefix)/bin/vault" vault
diff --git a/.stow-local-ignore b/.stow-local-ignore
index c9fd689..e62c1b1 100644
--- a/.stow-local-ignore
+++ b/.stow-local-ignore
@@ -5,5 +5,4 @@
^/Brewfile
.*.md
-etc
/.gnupg
diff --git a/Brewfile b/Brewfile
index 8721b24..81f2ddc 100644
--- a/Brewfile
+++ b/Brewfile
@@ -16,7 +16,6 @@ brew "pass-otp"
brew "pinentry-mac" if OS.mac?
brew "vim"
brew "neovim"
-brew "thefuck"
brew "the_silver_searcher"
brew "htop"
brew "openssl"
diff --git a/MacOS.md b/MacOS.md
index 5466a4b..5a2aff6 100644
--- a/MacOS.md
+++ b/MacOS.md
@@ -92,12 +92,6 @@ pyenv install $(cat ~/.rc/.pyenv/version)
brew install golang
```
-#### Setup rust
-
-```bash
-curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
-```
-
#### Setup node/nvm
```bash
@@ -136,5 +130,6 @@ vim +PlugInstall
#### Mutt email/links browser
```bash
-brew install neomutt brew install links
+brew install neomutt
+brew install links
```