aboutsummaryrefslogtreecommitdiff
path: root/.profile
blob: 0794099344b56bdb14bbb4818b27275b3b535042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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%"