Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
roktas committed Oct 14, 2023
1 parent fe465b1 commit 9e58f7c
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
6 changes: 3 additions & 3 deletions bash/bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ fi
# Midnight Commander
[[ -f /usr/lib/mc/mc.sh ]] && source /usr/lib/mc/mc.sh

# Jump
command -v jump &>/dev/null && eval "$(jump shell)"

# Fzf
[[ -f /usr/share/doc/fzf/examples/key-bindings.bash ]] && source /usr/share/doc/fzf/examples/key-bindings.bash
[[ -f /usr/share/doc/fzf/examples/completion.bash ]] && source /usr/share/doc/fzf/examples/completion.bash

# Zoxide
command -v zoxide &>/dev/null && eval "$(zoxide init bash)"

# Direnv (piggybacked)
_direnv_program=$(command -v direnv ||:)

Expand Down
2 changes: 1 addition & 1 deletion bigbang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ enter scripts
run direnv
run fd
run fzf
run jump
run sudo
run zoxide
leave

enter runtime
Expand Down
2 changes: 1 addition & 1 deletion fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if not functions -q fundle; eval (wget -qO- https://git.io/fundle-install); end

set -g fundle_plugins_dir "$XDG_CONFIG_HOME"/fish/plugins

status --is-interactive; and type -q jump; and source (jump shell fish | psub)
status --is-interactive; and type -q zoxide; and source (zoxide init fish | psub)

# ----------------------------------------------------------------------------------------------------------------------
# Settings
Expand Down
5 changes: 5 additions & 0 deletions scripts/desktop/calibre.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

set -euo pipefail; [[ -z ${TRACE:-} ]] || set -x

wget -qO- https://download.calibre-ebook.com/linux-installer.sh | bash -s
4 changes: 2 additions & 2 deletions scripts/terminal/jump.sh → scripts/terminal/zoxide.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set -euo pipefail; [[ -z ${TRACE:-} ]] || set -x

export DEBIAN_FRONTEND=noninteractive

repo=gsamokovarov/jump
file=${TMPDIR:-/tmp}/jump.deb
repo=ajeetdsouza/zoxide
file=${TMPDIR:-/tmp}/zoxide.deb

if url=$(
echo >&2 "Getting $repo latest package URL..."
Expand Down
6 changes: 3 additions & 3 deletions zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,13 @@ alias g=git
# Midnight Commander
[[ -f /usr/lib/mc/mc.sh ]] && source /usr/lib/mc/mc.sh

# Jump
command -v jump &>/dev/null && eval "$(jump shell)"

# Fzf
[[ -f /usr/share/doc/fzf/examples/key-bindings.zsh ]] && source /usr/share/doc/fzf/examples/key-bindings.zsh
[[ -f /usr/share/doc/fzf/examples/completion.zsh ]] && source /usr/share/doc/fzf/examples/completion.zsh

# Zoxide
command -v zoxide &>/dev/null && eval "$(zoxide init zsh)"

# Direnv (piggybacked)
_direnv_program=$(command -v direnv ||:)

Expand Down

0 comments on commit 9e58f7c

Please sign in to comment.