-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbash_export
More file actions
51 lines (36 loc) · 2.01 KB
/
Copy pathbash_export
File metadata and controls
51 lines (36 loc) · 2.01 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#This Path has to be adjust per Machine
#but just to have something here to start
# Nodejs installation packages folder
export PATH=~/.npm-global/bin:$PATH
# Anaconda installation Path
export PATH=/opt/anaconda3/bin:$PATH
#ROS setup
#source /opt/ros/hydro/setup.bash
##add pcl 1.7 to the path
#PATH=/usr/include/pcl-1.7:$PATH; export PATH
## added by Anaconda 1.9.2 installer
#export PATH="/home/andres/anaconda/bin:$PATH"
## added by emacs custom build
#export PATH="/Respaldo/kinect/emacs/src:$PATH"
#Add gcc-arm-none-eabi
#export PATH=/usr/local/gcc-arm-none-eabi-5_4-2016q3/bin:$PATH
#export LD_LIBRARY_PATH=/usr/local/gcc-arm-none-eabi-5_4-2016q3/lib:$LD_LIBRARY_PATH
#insert cuda folder to the path
#export PATH=/usr/local/cuda-5.0/bin:$PATH
#export LD_LIBRARY_PATH=/usr/local/cuda-5.0/lib:$LD_LIBRARY_PATH
#export LD_LIBRARY_PATH=/usr/local/cuda-5.0/lib64:$LD_LIBRARY_PATH
export VISUAL="vim -u $HOME/.fastvimrc"
export VISUAL="vim -u /home/one/.fastvimrc"
#RUst path
export PATH=$HOME/.cargo/bin:$PATH
export W3MIMGDISPLAY_PATH="w3m -o ext_image_viewer=0"
#i Exclude those directories even if not listed in .gitignore, or if .gitignore is missing
FD_OPTIONS="--follow --exclude .git --exclude node_modules"
# Change behavior of fzf dialogue
export FZF_DEFAULT_OPTS="--no-mouse --height 20% -1 --reverse --multi --inline-info --preview='[[ \$(file --mime {}) =~ binary ]] && echo {} is a binary file || (bat --style=numbers --color=always {} || cat {}) 2> /dev/null | head -300' --preview-window='right:hidden:wrap' --bind='f3:execute(bat --style=numbers {} || less -f {}),f2:toggle-preview,ctrl-d:half-page-down,ctrl-u:half-page-up,ctrl-a:select-all+accept,ctrl-y:execute-silent(echo {+} | pbcopy)'"
# Change find backend
# Use 'git ls-files' when inside GIT repo, or fd otherwise
export FZF_DEFAULT_COMMAND="git ls-files --cached --others --exclude-standard | fd --type f --type l $FD_OPTIONS"
# Find commands for "Ctrl+T" and "Opt+C" shortcuts
export FZF_CTRL_T_COMMAND="fd $FD_OPTIONS"
export FZF_ALT_C_COMMAND="fd --type d $FD_OPTIONS"