2022-06-06 13:13:15 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
export MB_ENV_BASE=$(pwd)
|
|
|
|
|
|
|
|
export XDG_CONFIG_HOME=${MB_ENV_BASE}/config
|
|
|
|
export XDG_DATA_HOME=${MB_ENV_BASE}/local/share
|
|
|
|
export PATH=${MB_ENV_BASE}/bin:${PATH}
|
|
|
|
export TERM=xterm-256color
|
2022-06-06 19:29:39 +02:00
|
|
|
export TERMINFO=${MB_ENV_BASE}/share/terminfo
|
|
|
|
export SHELL=${MB_ENV_BASE}/bin/fish
|
2022-06-06 13:13:15 +02:00
|
|
|
|
2022-06-06 22:29:16 +02:00
|
|
|
export FZF_CTRL_T_COMMAND="fd --type f --color=never --hidden"
|
|
|
|
export FZF_CTRL_T_OPTS="--preview 'bat --color=always --line-range :50 {}'"
|
|
|
|
export FZF_ALT_C_COMMAND="fd --type d . --color=never --hidden"
|
|
|
|
#export FZF_ALT_C_OPTS="--preview 'tree -C {} | head -50'"
|
|
|
|
|
2022-06-06 13:13:15 +02:00
|
|
|
|
|
|
|
${MB_ENV_BASE}/bin/fish.sh
|