mirror of
https://github.com/correl/dotfiles.git
synced 2025-03-18 17:00:06 -09:00
[emacs] Configure weechat
This commit is contained in:
parent
324f1a1e05
commit
804f912164
2 changed files with 31 additions and 0 deletions
|
@ -1302,6 +1302,35 @@ Taken from [[http://emacsredux.com/blog/2013/06/21/eval-and-replace/][Emacs Redu
|
||||||
"C-c j c" #'jira-api-create-issue-from-heading
|
"C-c j c" #'jira-api-create-issue-from-heading
|
||||||
"C-c j u" #'jira-api-update-issue-from-heading)
|
"C-c j u" #'jira-api-update-issue-from-heading)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
* Weechat
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package! weechat
|
||||||
|
:commands weechat-connect
|
||||||
|
:config
|
||||||
|
(require 'gnutls)
|
||||||
|
|
||||||
|
(setq weechat-host-default "git.phoenixinquis.net")
|
||||||
|
(setq weechat-port-default 9001)
|
||||||
|
(setq weechat-mode-default 'ssl)
|
||||||
|
(setq weechat-auto-monitor-buffers t)
|
||||||
|
(setq weechat-modules '(weechat-button
|
||||||
|
weechat-complete
|
||||||
|
weechat-alert
|
||||||
|
weechat-tracking
|
||||||
|
weechat-image
|
||||||
|
weechat-speedbar))
|
||||||
|
(setq weechat-tracking-types
|
||||||
|
'(("^[[:alnum:]]+\\.#" . :highlight)
|
||||||
|
("^[[:alnum:]]+\\.[^#]" . :message)))
|
||||||
|
(use-package! weechat-alert)
|
||||||
|
|
||||||
|
|
||||||
|
;; Dangit, powerline. Adding to global-mode-string so tracking shows up
|
||||||
|
;; (unless (memq 'tracking-mode-line-buffers global-mode-string)
|
||||||
|
;; (setq global-mode-string
|
||||||
|
;; (-insert-at 1 'tracking-mode-line-buffers global-mode-string)))
|
||||||
|
)
|
||||||
|
#+end_src
|
||||||
* Kanji Mode
|
* Kanji Mode
|
||||||
Minor mode for displaying Japanese characters' stroke orders.
|
Minor mode for displaying Japanese characters' stroke orders.
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,8 @@
|
||||||
(package! python-black)
|
(package! python-black)
|
||||||
(package! poetry)
|
(package! poetry)
|
||||||
(package! yapfify)
|
(package! yapfify)
|
||||||
|
(package! weechat)
|
||||||
|
(package! weechat-alert)
|
||||||
|
|
||||||
(package! org-roam-bibtex
|
(package! org-roam-bibtex
|
||||||
:recipe (:host github :repo "org-roam/org-roam-bibtex"))
|
:recipe (:host github :repo "org-roam/org-roam-bibtex"))
|
||||||
|
|
Loading…
Add table
Reference in a new issue