diff --git a/aliases/key_aliases.tmpl b/aliases/key_aliases.tmpl index e577f01..2f29b64 100644 --- a/aliases/key_aliases.tmpl +++ b/aliases/key_aliases.tmpl @@ -161,7 +161,7 @@ s "systemctl suspend" x "exit" so "xset dpms force off" sd "tmux kill-server; systemctl poweroff" -rb "systemctl reboot" +rbt "systemctl reboot" lo "i3-msg exit" xm "xmodmap ~/.Xmodmap && xset r rate $XSET_DELAY $XSET_RATE" X "xmodmap ~/.Xmodmap && xset r rate $XSET_DELAY $XSET_RATE" @@ -745,7 +745,7 @@ nst "cp ~/Documents/workout-logs/stretching.md /tmp && nvim /tmp/stretching.md" # Red Discord bot rde "pyenv shell red-discord-bot-test" -rdb "redbot --dev --debug" +rb "redbot --dev --debug" # ]]] coding projs # diff --git a/aliases/key_files.tmpl b/aliases/key_files.tmpl index b52ab81..ea36aa0 100644 --- a/aliases/key_files.tmpl +++ b/aliases/key_files.tmpl @@ -37,6 +37,7 @@ cc ~/linux-config/private_dot_calcurse/conf ci ~/linux-config/txt/ideas.md cm ./commit-msg.txt cmt /tmp/commit-msg.txt +el ~/Documents/twitch-emotes/links-new.md h ~/.habitctl/log hh ~/.habitctl/habits hlg ~/coding/spotify-lib-vis/src/api/management/commands/update-history.log @@ -49,8 +50,8 @@ mc ~/coding/mf-site/assets/sass/main.scss mi ~/coding/mf-site/ideas.md ne ~/linux-config/configs/neofetch/config.conf re README.md +rda ~/Documents/red-discord-bot/repos/gobcog-kevin/adventure/adventure.py td todo.md -el ~/Documents/twitch-emotes/links-new.md tg ~/.config/watson/tags_cache tt txt/todo.md tm ~/.vim/plugged/vim-snippets/UltiSnips/texmath.snippets @@ -82,7 +83,7 @@ wh ~/Documents/journal/todo/work-habit.md # ]]] sch # # gaming -cra ~/Documents/red-discord-bot/repos/gobcog/adventure/data/default/attribs.json -crm ~/Documents/red-discord-bot/repos/gobcog/adventure/data/default/monsters.json +cra ~/Documents/red-discord-bot/repos/gobcog-kevin/adventure/data/default/attribs.json +crm ~/Documents/red-discord-bot/repos/gobcog-kevin/adventure/data/default/monsters.json mta ~/.minetest/clientmods/custom_aliases/init.lua pk ~/Downloads/pokecord/pokecord2.md diff --git a/dot_config/fish/config.fish.tmpl b/dot_config/fish/config.fish.tmpl index 3a42788..cbcda3a 100755 --- a/dot_config/fish/config.fish.tmpl +++ b/dot_config/fish/config.fish.tmpl @@ -141,7 +141,8 @@ abbr def "define" abbr ens "enable-site" abbr ev "evince-silent" # abbr fbg "find-bg" -abbr fn "fzf-vim" +abbr fr "fzf-ranger" +abbr fv "fzf-vim" abbr fvft "find-vim-filetype" # git [[[ # diff --git a/dot_config/fish/functions/fzf-ranger.fish b/dot_config/fish/functions/fzf-ranger.fish new file mode 100644 index 0000000..85e08db --- /dev/null +++ b/dot_config/fish/functions/fzf-ranger.fish @@ -0,0 +1,6 @@ +function fzf-ranger + set dir (fd -td | fzf) + if test ! -z "$dir" + ranger $dir + end +end