aboutsummaryrefslogtreecommitdiff
path: root/.profile
diff options
context:
space:
mode:
authorNicholas Tay <nkt@outlook.kr>2021-04-09 18:00:27 +1000
committerNicholas Tay <nkt@outlook.kr>2021-04-09 18:00:27 +1000
commit42506d1606fea81a67530a0ff6ed93ec816a1594 (patch)
treec18e9ea4ca28035e680b206d0386ffcad8c2e1f4 /.profile
downloaddotlite-42506d1606fea81a67530a0ff6ed93ec816a1594.tar.gz
dotlite-42506d1606fea81a67530a0ff6ed93ec816a1594.tar.bz2
dotlite-42506d1606fea81a67530a0ff6ed93ec816a1594.zip
Initial lite config
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%"