diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-18 14:31:49 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-18 14:31:49 +0200 |
commit | 46ebbb2d723f9992b6ac267c02c2a6113a47ca8a (patch) | |
tree | 04c9dca3608d3f7914fd19eb6bfd96865dec6d9c /.profile | |
download | dotfiles-bsd-46ebbb2d723f9992b6ac267c02c2a6113a47ca8a.tar.gz dotfiles-bsd-46ebbb2d723f9992b6ac267c02c2a6113a47ca8a.tar.bz2 dotfiles-bsd-46ebbb2d723f9992b6ac267c02c2a6113a47ca8a.tar.xz dotfiles-bsd-46ebbb2d723f9992b6ac267c02c2a6113a47ca8a.tar.zst dotfiles-bsd-46ebbb2d723f9992b6ac267c02c2a6113a47ca8a.zip |
First commit
Diffstat (limited to '.profile')
-rw-r--r-- | .profile | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/.profile b/.profile new file mode 100644 index 0000000..30dfa6f --- /dev/null +++ b/.profile @@ -0,0 +1,56 @@ +# $FreeBSD: releng/12.1/share/skel/dot.profile 337497 2018-08-08 19:24:20Z asomers $ +# +# .profile - Bourne Shell startup script for login shells +# +# see also sh(1), environ(7). +# + +# These are normally set through /etc/login.conf. You may override them here +# if wanted. +# PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$HOME/bin; export PATH +# BLOCKSIZE=K; export BLOCKSIZE + +# Setting TERM is normally done through /etc/ttys. Do only override +# if you're sure that you'll never log in via telnet or xterm or a +# serial line. +# TERM=xterm; export TERM + +EDITOR=nvim; export EDITOR +PAGER=less; export PAGER + +# set ENV to a file invoked each time sh is started for interactive use. +ENV=$HOME/.shrc; export ENV + +# Path +export PATH="${HOME}/.local/bin:${HOME}/.cargo/bin:/usr/local/llvm10/bin:/usr/local/libexec/ccache/world:${PATH}" + +# Apps +# export ZSH="/home/jozan/.oh-my-zsh" +export EDITOR="nvim" +export TERMINAL="st" +export BROWSER="firefox" +export READER="zathura" +export FILE="vifm" +export MPD_HOST="${HOME}/.mpd/socket" + +# UTF-8 +export LANG="en_US.UTF-8" + +# Cleanup +export LESSHISTFILE="-" +export XDG_DATA_HOME="$HOME/.local/share" +export XDG_CONFIG_HOME="$HOME/.config" + +# ccache +export CCACHE_PATH="/usr/bin:/usr/local/bin:/usr/local/llvm10/bin" +export CCACHE_DIR="/var/cache/ccache-jozan" +export CCACHE_LOGFILE="/var/log/ccache.log" + +# rust +export RUSTFLAGS="-L /usr/local/lib" + +# Query terminal size; useful for serial lines. +# if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi + +# Display a random cookie on each login. +# if [ -x /usr/bin/fortune ] ; then /usr/bin/fortune freebsd-tips ; fi |