Compare commits
2 Commits
9a154c71ec
...
e72c0b648c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e72c0b648c | ||
|
|
581001db0b |
@@ -27,12 +27,13 @@ alias fzf="fzf --multi --preview 'bat --style=numbers --color=always {}' | xargs
|
|||||||
alias grep="grep --color=auto"
|
alias grep="grep --color=auto"
|
||||||
|
|
||||||
# Git
|
# Git
|
||||||
alias gs="git status"
|
alias gs="git status --short"
|
||||||
alias gca="git add -p . && git commit"
|
alias gca="git add -p . && git commit"
|
||||||
alias gd="git diff --word-diff"
|
alias gd="git diff --word-diff"
|
||||||
alias gl="git log --graph --show-signature"
|
alias gl="git log --graph --show-signature"
|
||||||
alias glog="git log --all --decorate --oneline --color --graph"
|
alias gla="git log --all --decorate --oneline --graph"
|
||||||
alias gla="git log --all --decorate --oneline"
|
alias gls="serie"
|
||||||
|
alias gm="git merge"
|
||||||
alias gm="git merge"
|
alias gm="git merge"
|
||||||
|
|
||||||
# List Directory
|
# List Directory
|
||||||
|
|||||||
3
.config/fish/functions/bashs.fish
Normal file
3
.config/fish/functions/bashs.fish
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
function bashs --description 'raw bash command'
|
||||||
|
bash -c "$argv"
|
||||||
|
end
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
function sshf --description 'fzf select for ssh hosts'
|
function sshf --description 'fzf select for ssh hosts'
|
||||||
ssh $(grep Host -w ~/.ssh/config | awk '{print $2}' | fzf --preview="echo" --preview-border="none")
|
ssh $(grep Host -w ~/.ssh/config | awk '{print $2}' | bashs "fzf --multi")
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
function tuis --description 'fzf select tui'
|
function tuis --description 'fzf select tui'
|
||||||
eval (string split "\n" (cat $HOME/.dotfiles/tuis.txt) | fzf)
|
eval (string split "\n" (cat $HOME/.dots/tuis.txt) | bashs "fzf --multi")
|
||||||
end
|
end
|
||||||
|
|||||||
21
.config/mpv/input.conf
Normal file
21
.config/mpv/input.conf
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# Volume
|
||||||
|
9 add volume -5
|
||||||
|
0 add volume 5
|
||||||
|
|
||||||
|
UP add volume 2
|
||||||
|
DOWN add volume -2
|
||||||
|
|
||||||
|
k add volume 2
|
||||||
|
j add volume -2
|
||||||
|
|
||||||
|
# Seek backward / forward
|
||||||
|
LEFT seek -5
|
||||||
|
RIGHT seek 5
|
||||||
|
|
||||||
|
l seek 5
|
||||||
|
h seek -5
|
||||||
|
|
||||||
|
# Bigger jumps
|
||||||
|
Shift+LEFT seek -30
|
||||||
|
Shift+RIGHT seek 30
|
||||||
|
|
||||||
5
.config/mpv/mpv.conf
Normal file
5
.config/mpv/mpv.conf
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
[pyradio]
|
||||||
|
volume=50
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user