Compare commits
3 Commits
14b71adf45
...
edf8dad73b
| Author | SHA1 | Date | |
|---|---|---|---|
| edf8dad73b | |||
| 8ef83ca80c | |||
| e15a376cdf |
@@ -4,7 +4,7 @@ set -eu
|
||||
|
||||
source "${BOOTSTRAP_LIB}/helpers"
|
||||
|
||||
VERSION="18.2.0"
|
||||
VERSION="18.3.0"
|
||||
INSTALL_DIR="${HOME}/.local/bin"
|
||||
INSTALLED_VERSION=""
|
||||
|
||||
@@ -19,7 +19,7 @@ fi
|
||||
|
||||
echo "Installing atuin version ${VERSION} ..."
|
||||
|
||||
URL="https://github.com/atuinsh/atuin/releases/download/v${VERSION}/atuin-v${VERSION}-x86_64-unknown-linux-gnu.tar.gz"
|
||||
URL="https://github.com/atuinsh/atuin/releases/download/v${VERSION}/atuin-x86_64-unknown-linux-gnu.tar.gz"
|
||||
|
||||
echo "Downloading from ${URL} ..."
|
||||
TARGET="$(download "$URL")"
|
||||
@@ -31,7 +31,7 @@ fi
|
||||
|
||||
echo "Unpacking atuin command to ${INSTALL_DIR}..."
|
||||
mkdir -p "${INSTALL_DIR}"
|
||||
tar --directory="${INSTALL_DIR}" -xf "${TARGET}" --strip-components 1 "atuin-v${VERSION}-x86_64-unknown-linux-gnu/atuin"
|
||||
tar --directory="${INSTALL_DIR}" -xf "${TARGET}" --strip-components 1 "atuin-x86_64-unknown-linux-gnu/atuin"
|
||||
|
||||
echo "Removing ${TARGET} ..."
|
||||
rm -f "${TARGET}"
|
||||
|
||||
@@ -4,7 +4,7 @@ set -eu
|
||||
|
||||
source "${BOOTSTRAP_LIB}/helpers"
|
||||
|
||||
VERSION="1.35.1"
|
||||
VERSION="1.37.1"
|
||||
INSTALL_DIR="${HOME}/.local/bin"
|
||||
INSTALLED_VERSION=""
|
||||
|
||||
|
||||
@@ -14,6 +14,10 @@ if [[ -x "$(command -v hx)" ]] ; then
|
||||
INSTALLED_VERSION="$(hx --version | grep -o '[0-9]\+\.[0-9.]\+')"
|
||||
fi
|
||||
|
||||
echo $VERSION
|
||||
echo $INSTALLED_VERSION
|
||||
exit 0
|
||||
|
||||
if [[ "$VERSION" == "$INSTALLED_VERSION" ]] ; then
|
||||
echo "Helix editor version ${VERSION} already installed."
|
||||
exit 0
|
||||
|
||||
@@ -4,7 +4,7 @@ set -eu
|
||||
|
||||
source "${BOOTSTRAP_LIB}/helpers"
|
||||
|
||||
VERSION="1.18.2"
|
||||
VERSION="1.19.0"
|
||||
INSTALL_DIR="${HOME}/.local/bin"
|
||||
INSTALLED_VERSION=""
|
||||
|
||||
|
||||
23
.tigrc
Normal file
23
.tigrc
Normal file
@@ -0,0 +1,23 @@
|
||||
# Variables
|
||||
set commit-order = author-date
|
||||
|
||||
# View settings
|
||||
set main-options = --all
|
||||
set main-view = id:yes author:width:20 date:custom commit-title:yes,graph,refs
|
||||
|
||||
color id yellow default
|
||||
color author default default
|
||||
color date green default
|
||||
color main-ref red default
|
||||
color cursor black green
|
||||
|
||||
# UI display settings
|
||||
set tab-size = 2
|
||||
|
||||
# Generic
|
||||
bind generic <Up> move-up
|
||||
bind generic <Down> move-down
|
||||
bind generic <C-Down> next
|
||||
bind generic <C-Up> previous
|
||||
bind generic <Ins> previous
|
||||
bind generic <Del> next
|
||||
Reference in New Issue
Block a user