This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
status is-interactive | |
or exit 0 | |
if type -q fzf_key_bindings | |
fzf_key_bindings | |
function __my_fzf_file | |
fzf-file-widget | |
printf '\e[2F' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
format = "$container$all$line_break$character" | |
[cmake] | |
version_format = "" | |
symbol = "CMake " | |
[cobol] | |
version_format = "" | |
symbol = "COBOL " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
status is-interactive | |
or exit 0 | |
if test -n "$XDG_RUNTIME_DIR" | |
set -g __starship_async_tmpdir "$XDG_RUNTIME_DIR"/fish-async-prompt | |
else | |
set -g __starship_async_tmpdir /tmp/fish-async-prompt | |
end | |
mkdir -p "$__starship_async_tmpdir" | |
set -g __starship_async_signal SIGUSR1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/data/data/com.termux/files/usr/bin/sh | |
# Setup pointless repo and install packages | |
echo "APT::Acquire::Retries \"3\";" > $PREFIX/etc/apt/apt.conf.d/80-retries | |
apt-get update | |
apt-get --assume-yes -o Dpkg::Options::=--force-confnew upgrade | |
apt-get --assume-yes -o Dpkg::Options::=--force-confnew install coreutils util-linux gnupg curl wget root-repo |