-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile_local_private
34 lines (26 loc) · 1.16 KB
/
profile_local_private
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# vim:ft=bash
#
# Local .profile for my private MacBook.
#
# This file should be symlinked as ~/.profile_local. It will then be sourced
# from ~/.profile.
# Locale settings to enable proper use of Unicode/UTF-8 throughout
export LC_ALL=en_US.UTF-8
# Disable OS X Catalina warning about zsh being the default shell
# See https://apple.stackexchange.com/a/371998
export BASH_SILENCE_DEPRECATION_WARNING=1
# Add (or move) Homebrew prefix to the beginning of the PATH
CLEANPATH=`echo $PATH | sed -E 's#/usr/local/bin:?##'`
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
# Path config for Rust installation
export PATH="$HOME/.cargo/bin:$PATH"
# Added by GDK (Gitlab Development Kit) bootstrap
export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig:${PKG_CONFIG_PATH}"
export RUBY_CONFIGURE_OPTS="--with-openssl-dir=/usr/local/opt/[email protected] --with-readline-dir=/usr/local/opt/readline"
# .asdf config
source /Users/marius/.asdf/asdf.sh
# Setting up FZF to use fd instead of find (see
# https://github.com/sharkdp/fd#using-fd-with-fzf).
export FZF_DEFAULT_COMMAND='fd --type file --color=always'
export FZF_DEFAULT_OPTS="--ansi"
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"