Updated mu4e inbox shortcuts, removed unused variable for Rust
The variable pointing to `racer` hasn’t been used since I switched to lsp-mode.
This commit is contained in:
parent
baae12a466
commit
a3e390a4e0
@ -1993,24 +1993,20 @@
|
|||||||
~bu~.
|
~bu~.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq mu4e-bookmarks
|
(setq mu4e-bookmarks
|
||||||
`(("flag:unread AND NOT flag:trashed" "Unread messages" ?u)
|
`(("maildir:/Inbox" "Inbox" ?i)
|
||||||
|
("maildir:/Sent" "Sent messages" ?s)
|
||||||
|
("flag:unread AND NOT flag:trashed" "Unread messages" ?u)
|
||||||
("date:today..now" "Today's messages" ?t)
|
("date:today..now" "Today's messages" ?t)
|
||||||
("date:7d..now" "Last 7 days" ?w)
|
("date:7d..now" "Last 7 days" ?w)
|
||||||
("date:1m..now" "Last month" ?m)
|
("date:1m..now" "Last month" ?m)
|
||||||
("date:1y..now" "Last year" ?y)
|
("date:1y..now" "Last year" ?y)
|
||||||
("mime:image/*" "Messages with images" ?p)
|
("mime:image/*" "Messages with images" ?p)))
|
||||||
(,(mapconcat 'identity
|
|
||||||
(mapcar
|
|
||||||
(lambda (maildir)
|
|
||||||
(concat "maildir:" (car maildir)))
|
|
||||||
mu4e-maildir-shortcuts) " OR ")
|
|
||||||
"All inboxes" ?i)))
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
On new email arrival, Emacs can send the system a notification which will be
|
On new email arrival, Emacs can send the system a notification which will be
|
||||||
handled as any other notification received by the system and will display the
|
handled as any other notification received by the system and will display the
|
||||||
number of unread emails to the user; in my case, notifications are handled by
|
number of unread emails to the user; in my case, notifications are handled by
|
||||||
[[https://dunst-project.org/][dunst]].
|
[[https://dunst-project.org/][dunst]] under i3, or AwesomeWM itself.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq mu4e-enable-notifications t
|
(setq mu4e-enable-notifications t
|
||||||
mu4e-alert-email-notification-types '(count))
|
mu4e-alert-email-notification-types '(count))
|
||||||
@ -3024,13 +3020,9 @@
|
|||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:CUSTOM_ID: h-4f572b65-92eb-4ecd-beb3-75aa5c260e37
|
:CUSTOM_ID: h-4f572b65-92eb-4ecd-beb3-75aa5c260e37
|
||||||
:END:
|
:END:
|
||||||
The first thing I need to set for my Rust setup is the path to ~racer~.
|
I need to point to racer where the source code of Rust is located so I can
|
||||||
#+BEGIN_SRC emacs-lisp
|
get some documentation. This is installed with the ~rust-src~ component you
|
||||||
(setq racer-cmd "~/.cargo/bin/racer")
|
can get through ~rustup~.
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
Now, I also need to point to racer where the source code of Rust is located
|
|
||||||
so I can get some documentation.
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq racer-rust-src-path "~/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/src")
|
(setq racer-rust-src-path "~/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/src")
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
Loading…
Reference in New Issue
Block a user