Não é possível usar solarizado em Mutt

7

Estou usando o Mavericks + iTerm + zsh + oh-my-zsh. Eu não tenho nenhum problema para usar solarized em iTerm e vim. Mas estou tendo dificuldade em usar solarizado em Mutt.

De acordo com o site oficial, deveria ser assim.

Eutenhooxterm-256coloremiTerm>Perfis>Emulaçãodeterminal>Tipodeterminalderelatório.

Eoseguinteémeu.muttrc.

#Abasic.muttrcforusewithGmail#ChangethefollowingsixlinestomatchyourGmailaccountdetailssetimap_user="my email"
set imap_pass = "my pw"
set smtp_url = "smtp://[email protected]:587/"
set smtp_pass = "mypw"
set from = "myemail here"
set realname = "My name"

# Change the following line to a different editor you prefer.
set editor = "nano"

# Basic config, you can leave this as is
set folder = "imaps://imap.gmail.com:993"
set spoolfile = "+INBOX"
set imap_check_subscribed
set hostname = gmail.com
set mail_check = 120
set timeout = 300
set imap_keepalive = 300
set postponed = "+[GMail]/Drafts"
set record = "+[GMail]/Sent Mail"
set header_cache=~/.mutt/cache/headers
set message_cachedir=~/.mutt/cache/bodies
set certificate_file=~/.mutt/certificates
set move = no
set include
set sort = 'threads'
set sort_aux = 'reverse-last-date-received'
set auto_tag = yes
ignore "Authentication-Results:"
ignore "DomainKey-Signature:"
ignore "DKIM-Signature:"
hdr_order Date From To Cc
alternative_order text/plain text/html *
auto_view text/html
bind editor <Tab> complete-query
bind editor ^T complete
bind editor <space> noop 

# Gmail-style keyboard shortcuts
macro index,pager y "<enter-command>unset trash\n <delete-message>" "Gmail archive message"
macro index,pager d "<enter-command>set trash=\"imaps://imap.googlemail.com/[GMail]/Bin\"\n <delete-message>" "Gmail delete message"
macro index,pager gi "<change-folder>=INBOX<enter>" "Go to inbox"
macro index,pager ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to all mail"
macro index,pager gs "<change-folder>=[Gmail]/Starred<enter>" "Go to starred messages"
macro index,pager gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to drafts"

# personal
set send_charset="utf-8"

# URL view
# macro pager \cb <pipe-entry>'w3m'<enter> 'Follow links in w3m'
macro index,pager \cB ": unset wait_key; set pipe_decode\n|w3m\n: set wait_key; unset pipe_decode\n" "call w3m to extract URLs out of a message"

# goobook for gmail contact
# mail address completion
set query_command="goobook query "'%s'"
bind editor <Tab> complete-query
macro index,pager a "<pipe-message>goobook add<return>" "add the sender address to Google contacts"

# color scheme
source ~/.mutt/mutt-colors-solarized/mutt-colors-solarized-dark-256.muttrc 

# vim-ish keybindings for going to the bottom of things
bind pager "G" bottom

## split window
set pager_index_lines=10

E isso que eu vejo no meu Mutt.

Gostariadesaberoquemaisprecisofazer.

Obrigadoantecipadamente.

UPDATE

Euestavalendo este e encontrei estas linhas.

# make sure that you are using mutt linked against slang, not ncurses, or
# suffer the consequences of weird color issues. use "mutt -v" to check this.

Quando eu faço mutt -v . Eu recebo os seguintes.

ncurses: ncurses 5.7.20081102 (compiled with 5.7)

Então, acho que minha pergunta é como posso alterar ncurses para slang .

UPDATE Eu instalei o Mutt com brew install mutt .

    
por shinokada 02.01.2014 / 01:43

3 respostas

2

Eu tive o mesmo problema no iTerm2, embora o esquema de cores solarizado para o próprio iTerm2 e para o Vim funcione perfeitamente, e mesmo que o meu Mutt seja compilado contra o s-lang. Descoberto por esta postagem no blog modifiquei mutt-colors-solarized-dark-256.muttrc e substitui color234 por default em todos os lugares. O resultado agora parece correto. Meu arquivo de cores modificado está disponível aqui: link

    
por 14.05.2015 / 01:57
0

Você deve instalar o mutt assim:

brew install slang urlview lynx
brew install mutt -–with-s-lang
    
por 17.09.2014 / 14:21
0

Tente:

mkdir ~/.mutt/colors/

Então: copie seu arquivo muttrc solarizado baixado, como:

cp ~/.downloads/mutt-colors-solarized-dark-256.muttrc ~/.mutt/colors/

Por fim: edite / adicione a fonte em ~/.muttrc , como em:

source ~/.mutt/colors/mutt-colors-solarized-dark-256.muttrc
    
por 13.01.2017 / 22:31

Tags