From 737c98234694e4a11c20e9fcb29e0ba3259001b5 Mon Sep 17 00:00:00 2001 From: Josuer08 Date: Mon, 8 Feb 2021 10:22:18 -0500 Subject: [PATCH] fzf added to the bashrc --- .bashrc | 35 +++++++---------------------------- .config/nvim/.netrwhist | 4 ++-- 2 files changed, 9 insertions(+), 30 deletions(-) diff --git a/.bashrc b/.bashrc index 1ed73699..4c46ea5a 100644 --- a/.bashrc +++ b/.bashrc @@ -2,7 +2,7 @@ # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for examples export EDITOR=vim; -export VISUAL=vim; #Nano is the main editor +export VISUAL=nvim; #Nano is the main editor # If not running interactively, don't do anything case $- in *i*) ;; @@ -99,8 +99,8 @@ alias ccat='highlight --out-format=ansi' # activates the autocd mode shopt -s autocd # wifi available -alias wifi='nmcli d wifi' - +alias wifi='nmcli d wifi'; +edit () { du -a "$1" | awk '{print $2}' | fzf | xargs -r "$VISUAL" ;} # personalized ps1 ################################################################################# # .bashrc (or .bash_profile) @@ -297,33 +297,12 @@ export PATH="$HOME/.gem/ruby/2.7.0/bin:$PATH"; source /usr/share/bash-completion/bash_completion; #this is just for better completion bind 'set show-all-if-ambiguous on'; bind 'TAB:menu-complete'; - -# HSTR configuration - add this to ~/.bashrc -alias hh=hstr # hh to be alias for hstr -export HSTR_CONFIG=hicolor # get more colors -shopt -s histappend # append new history items to .bash_history -export HISTCONTROL=ignorespace # leading space hides commands from history -export HISTFILESIZE=10000 # increase history file size (default is 500) -export HISTSIZE=${HISTFILESIZE} # increase history size (default is 500) -# ensure synchronization between bash memory and history file -export PROMPT_COMMAND="history -a; history -n; ${PROMPT_COMMAND}" -# if this is interactive shell, then bind hstr to Ctrl-r (for Vi mode check doc) -if [[ $- =~ .*i.* ]]; then bind '"\C-r": " hstr -- \C-j"'; fi -# if this is interactive shell, then bind 'kill last command' to Ctrl-x k -if [[ $- =~ .*i.* ]]; then bind '"\C-xk": " hstr -k \C-j"'; fi -# if this is an interactive shell, then bind ranger to Ctrl-f -if [[ $- =~ .*i.* ]]; then bind '"\C-f": " ranger \C-j"'; fi - - - - - +source /usr/share/fzf/completion.bash +source /usr/share/fzf/key-bindings.bash +pacget () { pacman -Slq | fzf --multi --preview 'pacman -Si {1}' | xargs -ro sudo pacman -S ;} +pacdel () { pacman -Qq | fzf --multi --preview 'pacman -Qi {1}' | xargs -ro sudo pacman -Rns ;} #############OK NEXT TIME YOU SEE THIS REMEMBER TO ORGANIZE IN MULTIPLE FILES AND CLEAN - - - - ## HERE I'LL EXPORT SOME STUFF TO CLEAN MY HOME DIR export GEM_HOME="$XDG_DATA_HOME"/gem; export GEM_SPEC_CACHE="$XDG_CACHE_HOME"/gem; diff --git a/.config/nvim/.netrwhist b/.config/nvim/.netrwhist index 710042c4..631d9ccf 100644 --- a/.config/nvim/.netrwhist +++ b/.config/nvim/.netrwhist @@ -1,5 +1,6 @@ let g:netrw_dirhistmax =10 -let g:netrw_dirhistcnt =1 +let g:netrw_dirhistcnt =2 +let g:netrw_dirhist_2='/home/josuer08/.config/awesome' let g:netrw_dirhist_1='/home/josuer08/.dotfiles/.config/nvim' let g:netrw_dirhist_0='/home/josuer08/.dotfiles/.config/nvim/plugin' let g:netrw_dirhist_9='/home/josuer08/Documents/tinysh' @@ -9,4 +10,3 @@ let g:netrw_dirhist_6='/home/josuer08/.dotfiles/.config/nvim/plugin' let g:netrw_dirhist_5='/home/josuer08/.dotfiles/.config/nvim' let g:netrw_dirhist_4='/home/josuer08/.dotfiles/.config/bashtop' let g:netrw_dirhist_3='/home/josuer08/.dotfiles/.config' -let g:netrw_dirhist_2='/home/josuer08/.dotfiles/.config/nvim' -- 2.25.1