diff options
author | Urbain Vaes <urbain@vaes.uk> | 2021-05-04 14:09:11 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2021-05-04 14:09:11 +0100 |
commit | fd7b978117224ecca8597191cc44139aced4793a (patch) | |
tree | ada33bc9ef66249e4f386d9a7ef95ff7d8b48df4 | |
parent | bdb0747e1224070933140acdfb3003adebb3855e (diff) |
[mutt] Add signature
-rw-r--r-- | mutt/.mutt/muttrc | 3 | ||||
-rw-r--r-- | mutt/.mutt/signature | 5 | ||||
-rw-r--r-- | qutebrowser/.config/qutebrowser/config.py | 4 | ||||
-rw-r--r-- | zsh/.zshrc | 1 |
4 files changed, 11 insertions, 2 deletions
diff --git a/mutt/.mutt/muttrc b/mutt/.mutt/muttrc index 00baa35..356a5a8 100644 --- a/mutt/.mutt/muttrc +++ b/mutt/.mutt/muttrc @@ -78,6 +78,8 @@ macro pager u "<pipe-message>urlview\n" # Key bindings bind attach <return> view-mailcap +bind index,pager j next-entry +bind index,pager k previous-entry bind index,pager \Cf next-page bind index,pager \Cb previous-page bind index,pager \Cu next-unread-mailbox @@ -116,4 +118,5 @@ alternates ".*@vaes.uk" # HTML email macro compose 5 "F $HOME/.mutt/filter<enter>y^T^Utext/html; charset=utf-8<enter><enter>" +set signature="$HOME/.mutt/signature" # vim: ft=muttrc diff --git a/mutt/.mutt/signature b/mutt/.mutt/signature index eb52bfb..9bf8f31 100644 --- a/mutt/.mutt/signature +++ b/mutt/.mutt/signature @@ -1 +1,4 @@ -Urbain Vaes +Urbain VAES +Postdoctoral researcher +MATHERIALS team, Inria Paris +https://urbain.vaes.uk diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index 5a64ec6..b591d2e 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -73,7 +73,7 @@ config.bind("<Ctrl-F>", 'fake-key <Right>', mode='insert') config.bind("<Ctrl-B>", 'fake-key <Left>', mode='insert') config.bind("<Ctrl-N>", 'fake-key <Down>', mode='insert') config.bind("<Ctrl-P>", 'fake-key <Up>', mode='insert') -config.bind("<Ctrl-I>", 'open-editor', mode='insert') +config.bind("<Ctrl-I>", 'edit-text', mode='insert') config.bind("<Ctrl-X>", 'spawn --userscript user-password', mode='insert') # Bindings for command mode @@ -104,6 +104,8 @@ c.url.searchengines = { c.aliases = { "history-all-clear": 'spawn rm /home/urbain/.local/share/qutebrowser/cmd-history ;; history-clear', "wq": 'quit -s', "q": 'quit', + "paywall": "open https://www.google.com/search?q=cache:{url}", + # "paywall": "open open https://12ft.io/proxy?q={url}", } # Style sheet @@ -151,3 +151,4 @@ alias wacom="xsetwacom --set 'Wacom One by Wacom S Pen stylus' mode relative" # Directories alias ..="cd .." alias ...="cd ../.." +alias ls="ls --color=auto" |