aboutsummaryrefslogblamecommitdiff
path: root/.profile
blob: 0794099344b56bdb14bbb4818b27275b3b535042 (plain) (tree)


















                                                                                
# Nick's light .profile
# Quite a lot of exports cut down, as we don't include the X programs ones here,
# just enough for cli

export PATH=$PATH:$HOME/.local/bin

# Programs
command -v nvim >/dev/null \
	&& export EDITOR="nvim" \
	|| export EDITOR="vim"
export VISUAL="$EDITOR"
export FILE="ranger"

# Home dot cleanup
export LESSHISTFILE="-"
export VIMINIT=":source $HOME/.config/nvim/init.vim"

# Tool config
export FZF_DEFAULT_OPTS="--layout=reverse --height 85%"