mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
Sorted some files and added to aliasrc
;
This commit is contained in:
parent
486e0519e7
commit
ab56535110
@ -16,8 +16,8 @@ alias \
|
|||||||
|
|
||||||
# Colorize commands when possible.
|
# Colorize commands when possible.
|
||||||
alias \
|
alias \
|
||||||
ls="ls -hN --color=auto --group-directories-first" \
|
ls="ls --all --literal -l --human-readable --color=auto --group-directories-first" \
|
||||||
grep="grep --color=auto" \
|
grep="grep -n --color=auto" \
|
||||||
diff="diff --color=auto" \
|
diff="diff --color=auto" \
|
||||||
ccat="highlight --out-format=ansi"
|
ccat="highlight --out-format=ansi"
|
||||||
|
|
||||||
@ -32,9 +32,6 @@ alias \
|
|||||||
e="$EDITOR" \
|
e="$EDITOR" \
|
||||||
v="$EDITOR" \
|
v="$EDITOR" \
|
||||||
p="sudo pacman" \
|
p="sudo pacman" \
|
||||||
xi="sudo xbps-install" \
|
|
||||||
xr="sudo xbps-remove -R" \
|
|
||||||
xq="xbps-query"
|
|
||||||
|
|
||||||
# This alias is important. It enables the `pauseallmpv` command.
|
# This alias is important. It enables the `pauseallmpv` command.
|
||||||
alias mpv="mpv --input-ipc-server=/tmp/mpvsoc$(date +%s)"
|
alias mpv="mpv --input-ipc-server=/tmp/mpvsoc$(date +%s)"
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
# You can add comments to these files with #
|
# You can add comments to these files with #
|
||||||
h ~/
|
cf ~/.config
|
||||||
d ~/downloads
|
d ~/downloads
|
||||||
gh ~/github
|
gh ~/github
|
||||||
|
h ~/
|
||||||
m ~/music
|
m ~/music
|
||||||
pp ~/pictures
|
|
||||||
vv ~/videos
|
|
||||||
cf ~/.config
|
|
||||||
sc ~/.local/bin
|
|
||||||
mn /mnt
|
mn /mnt
|
||||||
|
pp ~/pictures
|
||||||
|
sc ~/.local/bin
|
||||||
|
vv ~/videos
|
||||||
|
|||||||
@ -1,15 +1,17 @@
|
|||||||
bf ~/.config/files
|
bd ~/.config/directories
|
||||||
bd ~/.config/directories
|
bf ~/.config/files
|
||||||
bw ~/.config/bookmarks
|
bw ~/.config/bookmarks
|
||||||
cfa ~/.config/aliasrc
|
cfa ~/.config/aliasrc
|
||||||
cfz $ZDOTDIR/.zshrc
|
cfb ~/.config/i3blocks/config
|
||||||
cfv ~/.config/nvim/init.vim
|
cfd ~/.Xdefaults
|
||||||
cfm ~/.config/mutt/muttrc
|
cfi ~/.config/i3/config
|
||||||
cfd ~/.Xdefaults
|
cfk ~/.config/sxhkd/sxhkdrc
|
||||||
cfu ~/.config/newsboat/urls
|
cfm ~/.config/mutt/muttrc
|
||||||
cfn ~/.config/newsboat/config
|
cfmb ~/.config/ncmpcpp/bindings
|
||||||
cfmb ~/.config/ncmpcpp/bindings
|
cfmc ~/.config/ncmpcpp/config
|
||||||
cfmc ~/.config/ncmpcpp/config
|
cfn ~/.config/newsboat/config
|
||||||
cfk ~/.config/sxhkd/sxhkdrc
|
cfp ~/.config/polybar/config
|
||||||
cfi ~/.config/i3/config
|
cfu ~/.config/newsboat/urls
|
||||||
cfb ~/.config/i3blocks/config
|
cfv ~/.config/nvim/init.vim
|
||||||
|
cfz $ZDOTDIR/.zshrc
|
||||||
|
|
||||||
|
|||||||
@ -0,0 +1,52 @@
|
|||||||
|
map gcf cd ~/.config
|
||||||
|
map tcf tab_new ~/.config
|
||||||
|
map mcf shell mv -v %s ~/.config
|
||||||
|
map Ycf shell cp -rv %s ~/.config
|
||||||
|
map gd cd ~/downloads
|
||||||
|
map td tab_new ~/downloads
|
||||||
|
map md shell mv -v %s ~/downloads
|
||||||
|
map Yd shell cp -rv %s ~/downloads
|
||||||
|
map ggh cd ~/github
|
||||||
|
map tgh tab_new ~/github
|
||||||
|
map mgh shell mv -v %s ~/github
|
||||||
|
map Ygh shell cp -rv %s ~/github
|
||||||
|
map gh cd ~/
|
||||||
|
map th tab_new ~/
|
||||||
|
map mh shell mv -v %s ~/
|
||||||
|
map Yh shell cp -rv %s ~/
|
||||||
|
map gm cd ~/music
|
||||||
|
map tm tab_new ~/music
|
||||||
|
map mm shell mv -v %s ~/music
|
||||||
|
map Ym shell cp -rv %s ~/music
|
||||||
|
map gmn cd /mnt
|
||||||
|
map tmn tab_new /mnt
|
||||||
|
map mmn shell mv -v %s /mnt
|
||||||
|
map Ymn shell cp -rv %s /mnt
|
||||||
|
map gpp cd ~/pictures
|
||||||
|
map tpp tab_new ~/pictures
|
||||||
|
map mpp shell mv -v %s ~/pictures
|
||||||
|
map Ypp shell cp -rv %s ~/pictures
|
||||||
|
map gsc cd ~/.local/bin
|
||||||
|
map tsc tab_new ~/.local/bin
|
||||||
|
map msc shell mv -v %s ~/.local/bin
|
||||||
|
map Ysc shell cp -rv %s ~/.local/bin
|
||||||
|
map gvv cd ~/videos
|
||||||
|
map tvv tab_new ~/videos
|
||||||
|
map mvv shell mv -v %s ~/videos
|
||||||
|
map Yvv shell cp -rv %s ~/videos
|
||||||
|
map bd shell $EDITOR ~/.config/directories
|
||||||
|
map bf shell $EDITOR ~/.config/files
|
||||||
|
map bw shell $EDITOR ~/.config/bookmarks
|
||||||
|
map cfa shell $EDITOR ~/.config/aliasrc
|
||||||
|
map cfb shell $EDITOR ~/.config/i3blocks/config
|
||||||
|
map cfd shell $EDITOR ~/.Xdefaults
|
||||||
|
map cfi shell $EDITOR ~/.config/i3/config
|
||||||
|
map cfk shell $EDITOR ~/.config/sxhkd/sxhkdrc
|
||||||
|
map cfm shell $EDITOR ~/.config/mutt/muttrc
|
||||||
|
map cfmb shell $EDITOR ~/.config/ncmpcpp/bindings
|
||||||
|
map cfmc shell $EDITOR ~/.config/ncmpcpp/config
|
||||||
|
map cfn shell $EDITOR ~/.config/newsboat/config
|
||||||
|
map cfp shell $EDITOR ~/.config/polybar/config
|
||||||
|
map cfu shell $EDITOR ~/.config/newsboat/urls
|
||||||
|
map cfv shell $EDITOR ~/.config/nvim/init.vim
|
||||||
|
map cfz shell $EDITOR $ZDOTDIR/.zshrc
|
||||||
Loading…
x
Reference in New Issue
Block a user