Compare commits
No commits in common. "0a68af78c0e6c7aec22680f0a71cf915ca3fc28c" and "bb580e7005ec8bdfee4f59de93c999c515605f4e" have entirely different histories.
0a68af78c0
...
bb580e7005
|
|
@ -41,28 +41,29 @@ bind index gg first-entry
|
||||||
bind index j next-entry
|
bind index j next-entry
|
||||||
bind index k previous-entry
|
bind index k previous-entry
|
||||||
bind attach <return> view-mailcap
|
bind attach <return> view-mailcap
|
||||||
#bind attach l view-mailcap
|
bind attach l view-mailcap
|
||||||
bind editor <space> noop
|
bind editor <space> noop
|
||||||
bind index G last-entry
|
bind index G last-entry
|
||||||
#bind pager,attach h exit
|
bind pager,attach h exit
|
||||||
bind pager j next-line
|
bind pager j next-line
|
||||||
bind pager k previous-line
|
bind pager k previous-line
|
||||||
bind pager l view-attachments
|
bind pager l view-attachments
|
||||||
bind index d delete-message
|
bind index D delete-message
|
||||||
bind index U undelete-message
|
bind index U undelete-message
|
||||||
bind index L limit
|
bind index L limit
|
||||||
|
bind index h noop
|
||||||
bind index l display-message
|
bind index l display-message
|
||||||
bind index,query <space> tag-entry
|
bind index,query <space> tag-entry
|
||||||
#bind browser h goto-parent
|
#bind browser h goto-parent
|
||||||
#macro browser h '<change-dir><kill-line>..<enter>' "Go to parent folder"
|
macro browser h '<change-dir><kill-line>..<enter>' "Go to parent folder"
|
||||||
bind index,pager H view-raw-message
|
bind index,pager H view-raw-message
|
||||||
bind browser l select-entry
|
bind browser l select-entry
|
||||||
bind browser gg top-page
|
bind browser gg top-page
|
||||||
bind browser G bottom-page
|
bind browser G bottom-page
|
||||||
bind pager gg top
|
bind pager gg top
|
||||||
bind pager G bottom
|
bind pager G bottom
|
||||||
#bind index,pager,browser d half-down
|
bind index,pager,browser d half-down
|
||||||
#bind index,pager,browser u half-up
|
bind index,pager,browser u half-up
|
||||||
bind index,pager S sync-mailbox
|
bind index,pager S sync-mailbox
|
||||||
bind index,pager R group-reply
|
bind index,pager R group-reply
|
||||||
bind index \031 previous-undeleted # Mouse wheel
|
bind index \031 previous-undeleted # Mouse wheel
|
||||||
|
|
|
||||||
8
.vimrc
8
.vimrc
|
|
@ -7,11 +7,3 @@ endif
|
||||||
|
|
||||||
syntax on
|
syntax on
|
||||||
set autoindent expandtab tabstop=4 shiftwidth=4
|
set autoindent expandtab tabstop=4 shiftwidth=4
|
||||||
|
|
||||||
|
|
||||||
set tw=72
|
|
||||||
|
|
||||||
|
|
||||||
set wildmenu " menu de completion
|
|
||||||
set noswapfile
|
|
||||||
set laststatus=2 " barre de statut
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ groups | grep -q sudo || return
|
||||||
# sudo usermod -aG sudo $user # pour passer sudoers, puis reboot
|
# sudo usermod -aG sudo $user # pour passer sudoers, puis reboot
|
||||||
sudo apt install -y neomutt curl isync msmtp pass lynx notmuch abook urlview
|
sudo apt install -y neomutt curl isync msmtp pass lynx notmuch abook urlview
|
||||||
|
|
||||||
echo "*/10 * * * * $HOME/.local/bin/mailsync" > temp && crontab temp && rm temp
|
touch temp && echo "*/10 * * * * $HOME/.local/bin/mailsync" > temp && crontab temp && rm temp
|
||||||
|
|
||||||
|
|
||||||
# Installation oh my bash
|
# Installation oh my bash
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue