feat(emacs): some notmuch

This commit is contained in:
Pavel Korytov 2021-01-28 10:31:42 +03:00
parent afcf8ef14c
commit 27ce988287
4 changed files with 12 additions and 6 deletions

View file

@ -9,9 +9,12 @@
'(dired-recursive-copies 'always) '(dired-recursive-copies 'always)
'(doom-modeline-env-enable-python nil) '(doom-modeline-env-enable-python nil)
'(js-indent-level 2) '(js-indent-level 2)
'(notmuch-search-oldest-first nil)
'(org-agenda-files '(org-agenda-files
'("~/Documents/org-mode/ETU/r&d.org" "~/Documents/org-mode/Personal/misc.org" "~/Documents/org-mode/Job/dig-traject.org" "~/Documents/org-mode/Personal/look-forward.org" "~/Documents/org-mode/ETU/sem-9.org")) '("~/Documents/org-mode/ETU/r&d.org" "~/Documents/org-mode/Personal/misc.org" "~/Documents/org-mode/Job/dig-traject.org" "~/Documents/org-mode/Personal/look-forward.org" "~/Documents/org-mode/ETU/sem-9.org"))
'(sgml-basic-offset 2) '(sgml-basic-offset 2)
'(smtpmail-smtp-server "smtp.gmail.com")
'(smtpmail-smtp-service 25)
'(sp-autoskip-opening-pair t) '(sp-autoskip-opening-pair t)
'(sp-highlight-pair-overlay nil) '(sp-highlight-pair-overlay nil)
'(wakatime-cli-path "/usr/bin/wakatime") '(wakatime-cli-path "/usr/bin/wakatime")

View file

@ -170,7 +170,7 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(use-package evil-collection (use-package evil-collection
:straight t :straight t
:config :config
(evil-collection-init '(eww dired company vterm flycheck profiler cider explain-pause-mode notmuch))) (evil-collection-init '(eww dired company vterm flycheck profiler cider explain-pause-mode notmuch custom)))
(use-package evil-quickscope (use-package evil-quickscope
:straight t :straight t
@ -1200,8 +1200,8 @@ pip install qtconsole markdown qrcode[pil] PyQt5 PyQtWebEngine
(require 'eaf-evil) (require 'eaf-evil)
(setq eaf-evil-leader-key "SPC")) (setq eaf-evil-leader-key "SPC"))
#+end_src #+end_src
* OFF Mail * Mail
#+begin_src emacs-lisp :tangle no #+begin_src emacs-lisp
(use-package notmuch (use-package notmuch
:ensure nil) :ensure nil)
#+end_src #+end_src

View file

@ -126,7 +126,7 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(use-package evil-collection (use-package evil-collection
:straight t :straight t
:config :config
(evil-collection-init '(eww dired company vterm flycheck profiler cider explain-pause-mode notmuch))) (evil-collection-init '(eww dired company vterm flycheck profiler cider explain-pause-mode notmuch custom)))
(use-package evil-quickscope (use-package evil-quickscope
:straight t :straight t
@ -822,7 +822,7 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(use-package doom-modeline (use-package doom-modeline
:straight t :straight t
:init :init
;; (setq doom-modeline-env-enable-python nil) (setq doom-modeline-env-enable-python nil)
:config :config
(doom-modeline-mode 1) (doom-modeline-mode 1)
(setq doom-modeline-minor-modes nil) (setq doom-modeline-minor-modes nil)
@ -948,6 +948,9 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(setq backup-inhibited t) (setq backup-inhibited t)
(setq auto-save-default nil) (setq auto-save-default nil)
(use-package notmuch
:ensure nil)
(use-package lsp-mode (use-package lsp-mode
:straight t :straight t
:hook ( :hook (

View file

@ -1,5 +1,5 @@
export EDITOR=/usr/bin/nvim export EDITOR=/usr/bin/nvim
export BROWSER=/usr/bin/qutebrowser export BROWSER=/usr/bin/firefox
export QT_QPA_PLATFORMTHEME="qt5ct" export QT_QPA_PLATFORMTHEME="qt5ct"
export QT_AUTO_SCREEN_SCALE_FACTOR=0 export QT_AUTO_SCREEN_SCALE_FACTOR=0
export GTK2_RC_FILES="$HOME/.gtkrc-2.0" export GTK2_RC_FILES="$HOME/.gtkrc-2.0"