mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-28 18:28:35 -05:00
emacs: add mu4e, circe, mozc
This commit is contained in:
parent
a7712d50da
commit
21885bb001
@ -8,6 +8,9 @@
|
|||||||
(setq browse-url-browser-function 'browse-url-generic
|
(setq browse-url-browser-function 'browse-url-generic
|
||||||
browse-url-generic-program "qutebrowser")
|
browse-url-generic-program "qutebrowser")
|
||||||
|
|
||||||
|
;; Secrets
|
||||||
|
(setq auth-sources '("~/.config/doom/.authinfo.gpg"))
|
||||||
|
|
||||||
;; Font settings
|
;; Font settings
|
||||||
(setq doom-font (font-spec :family "Iosevka" :size 16)
|
(setq doom-font (font-spec :family "Iosevka" :size 16)
|
||||||
doom-serif-font (font-spec :family "Iosevka Slab" :size 16)
|
doom-serif-font (font-spec :family "Iosevka Slab" :size 16)
|
||||||
@ -34,12 +37,25 @@
|
|||||||
'(font-lock-comment-face :slant italic)
|
'(font-lock-comment-face :slant italic)
|
||||||
'(font-lock-keyword-face :weight bold))
|
'(font-lock-keyword-face :weight bold))
|
||||||
|
|
||||||
|
;; Japanese input method
|
||||||
|
(use-package! mozc
|
||||||
|
:config
|
||||||
|
(setq default-input-method "japanese-mozc"))
|
||||||
|
;; (use-package! mozc-cand-posframe
|
||||||
|
;; :after mozc
|
||||||
|
;; :config
|
||||||
|
;; (setq mozc-candidate-style 'posframe)
|
||||||
|
;; (custom-set-faces!
|
||||||
|
;; '(mozc-cand-posframe-normal-face :inherit tooltip)
|
||||||
|
;; '(mozc-cand-posframe-focused-face :inherit highlight)
|
||||||
|
;; '(mozc-cand-posframe-footer-face :inherit default)))
|
||||||
|
|
||||||
;; Work around modeline cut off. See hlissner/doom-emacs#2967
|
;; Work around modeline cut off. See hlissner/doom-emacs#2967
|
||||||
(setq all-the-icons-scale-factor 1.0)
|
(setq all-the-icons-scale-factor 1.0)
|
||||||
(after! doom-modeline
|
(after! doom-modeline
|
||||||
;; (custom-set-faces!
|
(custom-set-faces!
|
||||||
;; '(mode-line :height 0.97)
|
'(mode-line :height 0.98)
|
||||||
;; '(mode-line-inactive :height 0.97))
|
'(mode-line-inactive :height 0.98))
|
||||||
(setq doom-modeline-major-mode-icon t
|
(setq doom-modeline-major-mode-icon t
|
||||||
doom-modeline-major-mode-color-icon t
|
doom-modeline-major-mode-color-icon t
|
||||||
doom-modeline-unicode-fallback t))
|
doom-modeline-unicode-fallback t))
|
||||||
|
@ -260,7 +260,6 @@
|
|||||||
;; Elpher
|
;; Elpher
|
||||||
(defun elpher--init-hook ()
|
(defun elpher--init-hook ()
|
||||||
(setq visual-fill-column-center-text t)
|
(setq visual-fill-column-center-text t)
|
||||||
(font-lock-mode -1)
|
|
||||||
(visual-fill-column-mode 1))
|
(visual-fill-column-mode 1))
|
||||||
(use-package! elpher
|
(use-package! elpher
|
||||||
:defer t
|
:defer t
|
||||||
@ -353,3 +352,44 @@
|
|||||||
(interactive)
|
(interactive)
|
||||||
(start-process-shell-command "greenclip" nil "pkill greenclip && greenclip clear")
|
(start-process-shell-command "greenclip" nil "pkill greenclip && greenclip clear")
|
||||||
(follie/run-in-background "greenclip daemon"))
|
(follie/run-in-background "greenclip daemon"))
|
||||||
|
|
||||||
|
;; mu4e
|
||||||
|
(use-package! mu4e
|
||||||
|
:commands mu4e mu4e-compose-new
|
||||||
|
:config
|
||||||
|
(setq mu4e-update-interval (* 10 60)
|
||||||
|
mu4e-view-image-max-width 600
|
||||||
|
mu4e-context-policy 'always-ask
|
||||||
|
mu4e-compose-context-policy 'always-ask
|
||||||
|
mu4e-index-cleanup nil
|
||||||
|
mu4e-index-lazy-check t))
|
||||||
|
(set-email-account! "Gmail"
|
||||||
|
'((mu4e-sent-folder . "/[Gmail]/Sent Mail")
|
||||||
|
(mu4e-drafts-folder . "/[Gmail]/Drafts")
|
||||||
|
(mu4e-trash-folder . "/[Gmail]/Trash")
|
||||||
|
(mu4e-refile-folder . "/[Gmail]/All Mail")
|
||||||
|
(smtpmail-smtp-user . "example@gmail.com")
|
||||||
|
(smtpmail-smtp-server . "smtp.gmail.com")
|
||||||
|
(smtpmail-smtp-service . 465)
|
||||||
|
(smtpmail-stream-type . ssl)
|
||||||
|
(user-full-name . "FGoogle")
|
||||||
|
(user-mail-address . "example@gmail.com")
|
||||||
|
(mu4e-compose-signature . "---\nfgoogle"))
|
||||||
|
t)
|
||||||
|
|
||||||
|
;; circe
|
||||||
|
(defun my-fetch-password (&rest params)
|
||||||
|
(require 'auth-source)
|
||||||
|
(let ((match (car (apply #'auth-source-search params))))
|
||||||
|
(if match
|
||||||
|
(let ((secret (plist-get match :secret)))
|
||||||
|
(if (functionp secret)
|
||||||
|
(funcall secret)
|
||||||
|
secret))
|
||||||
|
(error "Password not found for %S" params))))
|
||||||
|
(set-irc-server! "chat.freenode.net"
|
||||||
|
'(:tls t
|
||||||
|
:port 6697
|
||||||
|
:nick "FollieHiyuki"
|
||||||
|
:sasl-password (my-fetch-password :user "FollieHiyuki" :host "irc.freenode.net")
|
||||||
|
:channels ("#voidlinux" "#river" "#archlinux" "#nixos")))
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
|
hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
|
||||||
;;hydra
|
;;hydra
|
||||||
indent-guides ; highlighted indent columns
|
indent-guides ; highlighted indent columns
|
||||||
(ligatures +extra); ligatures and symbols to make your code pretty again
|
;;(ligatures +extra); ligatures and symbols to make your code pretty again
|
||||||
;;minimap ; show a map of the code on the side
|
;;minimap ; show a map of the code on the side
|
||||||
modeline ; snazzy, Atom-inspired modeline, plus API
|
modeline ; snazzy, Atom-inspired modeline, plus API
|
||||||
nav-flash ; blink cursor line after big motions
|
nav-flash ; blink cursor line after big motions
|
||||||
@ -208,7 +208,7 @@
|
|||||||
(yaml +lsp) ; JSON, but readable
|
(yaml +lsp) ; JSON, but readable
|
||||||
|
|
||||||
:email
|
:email
|
||||||
(mu4e +gmail)
|
(mu4e +org +gmail)
|
||||||
;;notmuch
|
;;notmuch
|
||||||
;;(wanderlust +gmail)
|
;;(wanderlust +gmail)
|
||||||
|
|
||||||
|
@ -65,6 +65,7 @@
|
|||||||
(package! nerd-fonts
|
(package! nerd-fonts
|
||||||
:recipe (:host github :repo "FollieHiyuki/nerd-fonts.el"))
|
:recipe (:host github :repo "FollieHiyuki/nerd-fonts.el"))
|
||||||
(package! ivy-emms)
|
(package! ivy-emms)
|
||||||
|
;;(package! mozc-cand-posframe)
|
||||||
;;(package! 2048-game)
|
;;(package! 2048-game)
|
||||||
;;(package! org-ql)
|
;;(package! org-ql)
|
||||||
;;(package! org-wild-notifier)
|
;;(package! org-wild-notifier)
|
||||||
|
@ -20,7 +20,7 @@ set noerrorbells
|
|||||||
set noshowmode
|
set noshowmode
|
||||||
set encoding=utf-8
|
set encoding=utf-8
|
||||||
set fileencoding=utf-8
|
set fileencoding=utf-8
|
||||||
set iskeyword+=- " treat - as part of a word
|
" set iskeyword+=- " treat - as part of a word
|
||||||
set formatoptions-=cro
|
set formatoptions-=cro
|
||||||
set clipboard+=unnamedplus
|
set clipboard+=unnamedplus
|
||||||
set number relativenumber
|
set number relativenumber
|
||||||
|
@ -11,7 +11,7 @@ config.source('base16-nord.py')
|
|||||||
# /____/
|
# /____/
|
||||||
# Darkmode
|
# Darkmode
|
||||||
# c.colors.webpage.darkmode.enabled = True
|
# c.colors.webpage.darkmode.enabled = True
|
||||||
c.colors.webpage.prefers_color_scheme_dark = True
|
c.colors.webpage.prefers_color_scheme = 'dark'
|
||||||
|
|
||||||
# Confirm on quit
|
# Confirm on quit
|
||||||
c.confirm_quit = ['downloads', 'multiple-tabs']
|
c.confirm_quit = ['downloads', 'multiple-tabs']
|
||||||
|
37
home/.mbsyncrc
Normal file
37
home/.mbsyncrc
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# ---------------------------------- #
|
||||||
|
# Gmail #
|
||||||
|
# ---------------------------------- #
|
||||||
|
|
||||||
|
IMAPAccount gmail
|
||||||
|
Host imap.gmail.com
|
||||||
|
User example@gmail.com
|
||||||
|
PassCmd "keepassxc-cli show -s ~/pass.kdbx Emails/Gmail | grep \"Password:\" | awk '{print $2}'"
|
||||||
|
Port 993
|
||||||
|
AuthMechs LOGIN
|
||||||
|
SSLType IMAPS
|
||||||
|
#SSLVersions SSLv3
|
||||||
|
CertificateFile /etc/ssl/certs/ca-certificates.crt
|
||||||
|
|
||||||
|
# Remote
|
||||||
|
IMAPStore gmail-remote
|
||||||
|
Account gmail
|
||||||
|
|
||||||
|
# Local
|
||||||
|
MaildirStore gmail-local
|
||||||
|
Subfolders Verbatim
|
||||||
|
Path ~/Mail/Gmail/
|
||||||
|
Inbox ~/Mail/Gmail/Inbox
|
||||||
|
|
||||||
|
# Connections
|
||||||
|
Channel gmail
|
||||||
|
Master :gmail-remote:
|
||||||
|
Slave :gmail-local:
|
||||||
|
Patterns ![Gmail]* "[Gmail]/Sent Mail" "[Gmail]/Starred" "[Gmail]/All Mail" "[Gmail]/Trash" "[Gmail]/Drafts" "[Gmail]/Spam" "INBOX"
|
||||||
|
Create Slave
|
||||||
|
Expunge Both
|
||||||
|
SyncState *
|
||||||
|
|
||||||
|
# ---------------------------------- #
|
||||||
|
# Self-hosted mail #
|
||||||
|
# ---------------------------------- #
|
||||||
|
# Soon
|
Loading…
Reference in New Issue
Block a user