827448d116
See the comments in .profile for an explanation and a link to a thread that has a longer-conversation.
27 lines
973 B
Bash
27 lines
973 B
Bash
# Some programs read from ~/.profile for values. It's best to set environment
|
|
# variables here instead of in ~/.zshrc or similar files, which are sourced
|
|
# everytime a new shell is created. The ~/.profile, on the other hand, is
|
|
# typically sourced only once at login.
|
|
|
|
PATH="$PATH:$HOME/bin"
|
|
|
|
# Application preferences
|
|
export BROWSER=google-chrome
|
|
export TERMINAL=st
|
|
export EDITOR=emacsclient
|
|
export ALTERNATE_EDITOR=nvim
|
|
|
|
# Application configuration
|
|
export FZF_DEFAULT_COMMAND='fd --hidden --follow --exclude ".git"'
|
|
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
|
|
|
|
export DOTFILES="$HOME/Dropbox/dotfiles"
|
|
export ORG_DIRECTORY="$HOME/Dropbox/org"
|
|
|
|
# This fixes nixpkgs that rely on glibc-2.27, which allegedly breaks locale
|
|
# issues.
|
|
# See this thread for more details: https://github.com/NixOS/nixpkgs/issues/8398
|
|
export LOCALE_ARCHIVE=$(readlink ~/.nix-profile/lib/locale)/locale-archive
|
|
|
|
# Set environment variables for Nix
|
|
source ~/.nix-profile/etc/profile.d/nix.sh
|