aboutsummaryrefslogtreecommitdiff
path: root/.profile
diff options
context:
space:
mode:
Diffstat (limited to '.profile')
-rw-r--r--.profile19
1 files changed, 19 insertions, 0 deletions
diff --git a/.profile b/.profile
new file mode 100644
index 0000000..0794099
--- /dev/null
+++ b/.profile
@@ -0,0 +1,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%"