Compare commits

..

3 commits

Author SHA1 Message Date
e5d5111d99
[zsh] fix fzf history not working 2024-09-12 23:41:19 +01:00
5ec4e26dd1
[xinitrc] sourced zshenv 2024-09-12 23:40:53 +01:00
5c21f8ef8a
[zsh] move PATH to zshenv 2024-09-12 23:38:28 +01:00
4 changed files with 22 additions and 25 deletions

View file

@ -4,11 +4,31 @@ TRAPUSR1() {
exec "${SHELL}"
fi
}
# Add exports
if [[ $(uname) == "Darwin" ]]; then
#ONLY MACOS
export JAVA_HOME="/opt/homebrew/opt/openjdk@17/libexec/openjdk.jdk/Contents/Home"
export PATH="/opt/homebrew/bin:$PATH"
export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"
export PATH="/opt/homebrew/opt/texlive/bin:$PATH"
else
#ONLY LINUX
export LIBVA_DRIVER_NAME=nvidia
fi
#BOTH
export PATH="/usr/sbin:/sbin:$PATH"
export PATH="$HOME/.local/share/nvim/mason/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/go/bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
export PATH="$HOME/.ghcup/bin:$PATH"
export PATH="$HOME/.miniforge3/bin:$PATH"
export PATH="$HOME/.cabal/bin:$PATH"
export XDG_CONFIG_HOME="${HOME}/.config"
export XDG_CACHE_HOME="${HOME}/.cache"
export XDG_DATA_HOME="${HOME}/.local/share"

View file

@ -1,19 +1,3 @@
# Add paths
export PATH="/usr/sbin:/sbin:$PATH"
export PATH="$HOME/.local/share/nvim/mason/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/go/bin:$PATH"
export PATH="$HOME/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
export PATH="$HOME/.ghcup/bin:$PATH"
export PATH="$HOME/.miniforge3/bin:$PATH"
export PATH="$HOME/.cabal/bin:$PATH"
export GOPATH=$HOME/.go
export PATH=$PATH:$GOPATH/bin
export PATH="/opt/homebrew/bin:$PATH"
export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"
export PATH="/opt/homebrew/opt/texlive/bin:$PATH"
# Setup History
HISTFILE=${ZDOTDIR:-$HOME}/.zsh_history
HISTSIZE=100000000

View file

@ -5,10 +5,8 @@ source $ZDOTDIR/plugins/zsh-history-substring-search/zsh-history-substring-searc
source $ZDOTDIR/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh
zvm_after_init_commands+=('[ -f $HOME/.fzf.zsh ] && source $HOME/.fzf.zsh')
zvm_after_init_commands+=('source <(fzf --zsh) && enable-fzf-tab')
source $ZDOTDIR/plugins/fzf-tab/fzf-tab.plugin.zsh
zstyle ':fzf-tab:complete:cd:*' fzf-preview 'eza -1 --color=always $realpath'
enable-fzf-tab
source $ZDOTDIR/plugins/zsh-vi-mode/zsh-vi-mode.plugin.zsh

View file

@ -36,11 +36,6 @@ setxkbmap -option grp:alt_space_toggle
setxkbmap -option caps:escape
xset r rate 300 40
#gpu_mode=$(/usr/bin/envycontrol -q)
#if [ "$gpu_mode" = "nvidia" ]; then
#xrandr --setprovideroutputsource modesetting NVIDIA-0
#xrandr --auto
#fi
. $ZDOTDIR/.zshenv
exec /home/afonso/.local/bin/xmonad