diff --git a/profile/.profile.d/dotfiles.sh b/profile/.profile.d/dotfiles.sh new file mode 100644 index 0000000..ce610c5 --- /dev/null +++ b/profile/.profile.d/dotfiles.sh @@ -0,0 +1,3 @@ +#/usr/bin/env bash + +export DOTFILES="$HOME/.dotfiles" diff --git a/profile/.profile.d/editor.sh b/profile/.profile.d/editor.sh new file mode 100644 index 0000000..a55e9e0 --- /dev/null +++ b/profile/.profile.d/editor.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +export EDITOR=vim diff --git a/profile/.profile.d/homebrew.sh b/profile/.profile.d/homebrew.sh new file mode 100644 index 0000000..9a0db64 --- /dev/null +++ b/profile/.profile.d/homebrew.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +export HOMEBREW_NO_ENV_HINTS=1 diff --git a/profile/.profile.d/venv.sh b/profile/.profile.d/venv.sh new file mode 100644 index 0000000..c66cedb --- /dev/null +++ b/profile/.profile.d/venv.sh @@ -0,0 +1,3 @@ +#/usr/bin/env bash + +export VIRTUAL_ENV_DISABLE_PROMPT=1 diff --git a/zsh/.oh-my-zsh/custom/aliases.zsh b/zsh/.oh-my-zsh/custom/aliases.zsh index 0843c76..37b2849 100644 --- a/zsh/.oh-my-zsh/custom/aliases.zsh +++ b/zsh/.oh-my-zsh/custom/aliases.zsh @@ -16,9 +16,6 @@ is_debian_based() { } alias ls="eza --color=always --group-directories-first --icons" -alias ll="eza -l --color=always --group-directories-first --icons" -alias la="eza -a --color=always --group-directories-first --icons" -alias lt="eza -aT --color=always --group-directories-first --icons" # Replace some more things with better alternatives if is_debian_based; then @@ -37,11 +34,8 @@ alias fgrep='ugrep -F --color=auto' # Other aliases alias paths='echo -e ${PATH//:/\\n}' # path: Echo all executable Paths -alias du='du -h' alias userlist="cut -d: -f1 /etc/passwd | sort" alias ip='ip -color' alias pbcopy='xsel --clipboard --input' alias pbpaste='xsel --clipboard --output' -alias stow='stow --dotfiles -d ~/.dotfiles ' -alias openport='netstat -nape --inet' -alias kssh='kitty +kitten ssh' +alias stow='stow -d $DOTFILES ' diff --git a/zsh/.zshenv b/zsh/.zshenv index 1e5d74c..21d968e 100644 --- a/zsh/.zshenv +++ b/zsh/.zshenv @@ -10,6 +10,3 @@ if command -v starship > /dev/null 2>&1; then eval "$(starship init zsh)" fi -export VIRTUAL_ENV_DISABLE_PROMPT=1 -export EDITOR=nvim -export HOMEBREW_NO_ENV_HINTS=1