summaryrefslogtreecommitdiffstats
path: root/.profile
diff options
context:
space:
mode:
author2024-08-05 23:32:01 +0530
committer2024-08-05 23:32:01 +0530
commitf8f0fbca5bae1c4cf080b5c90647074f3890e267 (patch)
tree06dc91d7c0aeca04b4113769717f20932cebc619 /.profile
parentupdated nvim config (diff)
downloaddotfiles-f8f0fbca5bae1c4cf080b5c90647074f3890e267.tar
dotfiles-f8f0fbca5bae1c4cf080b5c90647074f3890e267.tar.gz
dotfiles-f8f0fbca5bae1c4cf080b5c90647074f3890e267.tar.bz2
dotfiles-f8f0fbca5bae1c4cf080b5c90647074f3890e267.tar.lz
dotfiles-f8f0fbca5bae1c4cf080b5c90647074f3890e267.tar.xz
dotfiles-f8f0fbca5bae1c4cf080b5c90647074f3890e267.tar.zst
dotfiles-f8f0fbca5bae1c4cf080b5c90647074f3890e267.zip
Updated nvim config
Diffstat (limited to '.profile')
-rw-r--r--.profile37
1 files changed, 0 insertions, 37 deletions
diff --git a/.profile b/.profile
deleted file mode 100644
index c5eaf60..0000000
--- a/.profile
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh -l
-
-if command -v nvim > /dev/null
-then
- export VISUAL=nvim
-elif command -v vim > /dev/null
-then
- export VISUAL=vim
-elif command -v vi > /dev/null
-then
- export VISUAL=vi
-fi
-
-if command -v ex > /dev/null
-then
- export EDITOR=ex
-elif command -v ed > /dev/null
-then
- export EDITOR=ed
-fi
-export FCEDIT="$VISUAL"
-
-if command -v less > /dev/null
-then
- export PAGER=less
-elif command -v more > /dev/null
-then
- export PAGER=more
-fi
-
-if test -r "$HOME"/.shrc
-then
- export ENV="$HOME"/.shrc
-fi
-
-PATH=$HOME/.nodenv/bin:$HOME/.pyenv/bin:$HOME/.local/bin/:$PATH
-export MANPATH="$HOME"/.local/share/man: