aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2021-05-06 21:29:52 -0400
committertdro <tdro@users.noreply.github.com>2021-05-06 21:29:52 -0400
commit6ee02d283831a16714e3e127cafbeb54cb143a16 (patch)
tree9bf181cc1ccd272e5723c1a542cf7f40815c2294 /.bashrc
parentd2a5b3bebbb900d39c57b806f5e2e956552eb93b (diff)
downloaddotfiles-6ee02d283831a16714e3e127cafbeb54cb143a16.tar.gz
dotfiles-6ee02d283831a16714e3e127cafbeb54cb143a16.tar.bz2
dotfiles-6ee02d283831a16714e3e127cafbeb54cb143a16.zip
.config/fzf-marks/fzf-marks.plugin.bash -> .config/fzf/marks.plugin.bash
Move directory and file marks to central location.
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/.bashrc b/.bashrc
index 6cb4535..e54b75d 100644
--- a/.bashrc
+++ b/.bashrc
@@ -112,8 +112,8 @@ lxc-start() { for container in "$@"; do $(type -P lxc-start) -n "$container"; do
lxc-stop() { for container in "$@"; do $(type -P lxc-stop) -kn "$container"; done }
lxc-destroy() { for container in "$@"; do $(type -P lxc-destroy) -n "$container"; done }
-# source fzm
-[ -f "$HOME/.config/fzf-marks/fzf-marks.plugin.bash" ] && . "$HOME/.config/fzf-marks/fzf-marks.plugin.bash"
+# source fzf markers
+[ -f "$HOME/.config/fzf/marks.plugin.bash" ] && . "$HOME/.config/fzf/marks.plugin.bash"
# remove bash history duplicates
history-remove-duplicates() { awk '!visited[$0]++' "$HOME/.bash_history" | sponge "$HOME/.bash_history"; }