aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-04-03 19:28:44 -0400
committertdro <tdro@users.noreply.github.com>2020-04-03 19:28:44 -0400
commitff291148f59c041394aa607bc7f6ca0c27c514de (patch)
tree725532b5019b8e86fae63fe6468efcf997a8de78 /.bashrc
parentf23c4da3185020434eaf62c62d7da63881bda897 (diff)
downloaddotfiles-ff291148f59c041394aa607bc7f6ca0c27c514de.tar.gz
dotfiles-ff291148f59c041394aa607bc7f6ca0c27c514de.tar.bz2
dotfiles-ff291148f59c041394aa607bc7f6ca0c27c514de.zip
.bashrc: Cleanup
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc22
1 files changed, 7 insertions, 15 deletions
diff --git a/.bashrc b/.bashrc
index 8d09e47..81e947d 100644
--- a/.bashrc
+++ b/.bashrc
@@ -72,6 +72,12 @@ export HISTFILESIZE=
export HISTCONTROL=ignoredups:erasedups
export PROMPT_COMMAND="cd .; history -a"
+# fzf settings
+export FZF_DEFAULT_OPTS="--color=fg:255,hl:9 \
+ --color=fg+:81,bg+:237,hl+:9 \
+ --color=info:188,prompt:69,pointer:199 \
+ --color=marker:109,spinner:236,header:255"
+
# ssh agent with keychain
alias ssh='eval $(/usr/bin/keychain --eval --agents ssh -Q --quiet ~/.ssh/mobile ~/.ssh/primary) && ssh'
@@ -122,25 +128,11 @@ PATH="$PATH:$HOME/.config/composer/vendor/bin"
PATH="$PATH:$HOME/.node_modules/node_modules/.bin"
PATH="$PATH:$HOME/.local/bin"
-export FZF_DEFAULT_OPTS="--color=fg:255,hl:9 \
- --color=fg+:81,bg+:237,hl+:9 \
- --color=info:188,prompt:69,pointer:199 \
- --color=marker:109,spinner:236,header:255"
-
# source fzm
[ -f "$HOME/.config/fzf-marks/fzf-marks.plugin.bash" ] && . "$HOME/.config/fzf-marks/fzf-marks.plugin.bash"
-# change directory with fzf
-fd() {
- DIR=$(ls -t -A1 --color=never | fzf-tmux) \
- && cd "$DIR" || exit
-}
-
# remove bash history duplicates
-history-remove-duplicates() {
- awk '!visited[$0]++' "$HOME/.bash_history" > /tmp/.bash_history.tmp;
- mv -f /tmp/.bash_history.tmp "$HOME/.bash_history"
-}
+history-remove-duplicates() { awk '!visited[$0]++' "$HOME/.bash_history" > /tmp/.bash_history.tmp && mv -f /tmp/.bash_history.tmp "$HOME/.bash_history"; }
# extract docker container as rootfs
docker-rootfs() { id=$(docker run -d "$1" /bin/true) && docker export -o "$2" "$id" && docker container rm "$id"; }