From fcb1c7ba2a1aa4eb5ea6146da3d4b3b605e20e28 Mon Sep 17 00:00:00 2001 From: Amar Saljic Date: Fri, 4 Jul 2025 23:41:04 +0200 Subject: [PATCH] added files for securing access --- generic_working_machine/tmux.conf | 2 ++ generic_working_machine/zshrc | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 generic_working_machine/tmux.conf create mode 100644 generic_working_machine/zshrc diff --git a/generic_working_machine/tmux.conf b/generic_working_machine/tmux.conf new file mode 100644 index 0000000..7fc548b --- /dev/null +++ b/generic_working_machine/tmux.conf @@ -0,0 +1,2 @@ +set -g default-terminal "xterm-256color" + diff --git a/generic_working_machine/zshrc b/generic_working_machine/zshrc new file mode 100644 index 0000000..504b610 --- /dev/null +++ b/generic_working_machine/zshrc @@ -0,0 +1,12 @@ +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 PATH="/opt/homebrew/opt/ruby/bin:$PATH" +export GEM_HOME=$HOME/.gem +export PATH=$GEM_HOME/bin:$PATH +export PATH="/Users/mucas/.local/share/gem/ruby/3.2.0/bin:$PATH" + +export PYENV_ROOT="$HOME/.pyenv" +[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" +eval "$(pyenv init - zsh)"