fish: add more aliases
This commit is contained in:
parent
ef95eb38db
commit
b4f7722108
@ -3,6 +3,8 @@ function thur; zathura $argv; end
|
||||
# stricter sandbox zathura
|
||||
function zathsec; /usr/bin/zathura -c ~/.config/zathura-sec $argv; end
|
||||
|
||||
function calc; calcpy $argv; end
|
||||
|
||||
# tmux with 256-color
|
||||
function tmx; tmux -2 $argv; end
|
||||
|
||||
@ -64,6 +66,7 @@ end
|
||||
function lstb; qbprof lstb; end
|
||||
function work; qbprof work; end
|
||||
function chat; qbprof chat; end
|
||||
function zoom; qbprof zoom; end
|
||||
|
||||
# git stuff
|
||||
abbr -a -- gs git status
|
||||
|
19
src/.config/qbprof/zoom/config/config.py
Normal file
19
src/.config/qbprof/zoom/config/config.py
Normal file
@ -0,0 +1,19 @@
|
||||
config.load_autoconfig(False)
|
||||
|
||||
c.input.mode_override = "passthrough"
|
||||
c.statusbar.show = "never"
|
||||
c.tabs.show = "multiple"
|
||||
c.bindings.default["passthrough"] = {}
|
||||
c.bindings.commands["passthrough"] = {
|
||||
"<ctrl-escape>": "mode-leave"
|
||||
}
|
||||
|
||||
c.fonts.default_family = "JetBrains Mono"
|
||||
c.downloads.location.directory = "~/quar/"
|
||||
c.scrolling.smooth = True
|
||||
c.downloads.remove_finished = 1000
|
||||
|
||||
# homegrown file selector
|
||||
c.fileselect.handler = "external"
|
||||
c.fileselect.multiple_files.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"]
|
||||
c.fileselect.single_file.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"]
|
Loading…
Reference in New Issue
Block a user