mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-12-22 18:38:00 +00:00
[.zshrc] Add -I to fd commands and add new alias mknamedvenv
This commit is contained in:
parent
69e2edab64
commit
b2deb86a71
5
.zshrc
5
.zshrc
@ -19,6 +19,7 @@ alias duh='du -sch .[!.]* *'
|
||||
alias gb="git checkout \$(git branch -vv | fzf +m | awk '{print \$1}')"
|
||||
alias open='xdg-open'
|
||||
alias yayU='yay -Suy --noconfirm'
|
||||
alias mknamedvenv='mkvirtualenv $(basename $PWD) -r requirements.txt'
|
||||
|
||||
##### tilix #####
|
||||
|
||||
@ -45,10 +46,10 @@ source /usr/share/fzf/key-bindings.zsh
|
||||
source /usr/share/fzf/completion.zsh
|
||||
|
||||
fzf-file-widget-hidden () {
|
||||
fd --type f --hidden --follow --exclude .git --exclude .cache | fzf
|
||||
fd --type f --hidden -I --follow --exclude .git --exclude .cache | fzf
|
||||
}
|
||||
|
||||
export FZF_DEFAULT_COMMAND="fd --type f --follow"
|
||||
export FZF_DEFAULT_COMMAND="fd --type f --follow -I"
|
||||
export FZF_DEFAULT_OPTS="-m --reverse --bind 'ctrl-o:execute(xdg-open {})+abort,ctrl-e:execute({})+abort,ctrl-y:execute(echo {} | xclip -selection clipboard -in)+abort'"
|
||||
export FZF_CTRL_T_OPTS="--no-height --preview '[[ \$(file --mime {}) =~ binary ]] && echo {} is a binary file || pygmentize {} 2> /dev/null | head -500'"
|
||||
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
|
||||
|
Loading…
Reference in New Issue
Block a user