#emacs configs #recycle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; larger fonts | |
(set-default-font "DejaVu Sans Mono:pixelsize=22") | |
(setq default-frame-alist | |
'((height . 23) (width . 74) (menu-bar-lines . 20) (tool-bar-lines . 0))) | |
;; Chinese font | |
(set-fontset-font "fontset-default" | |
'unicode '("AR PL UMing CN" . "unicode-bmp")) | |
;; for rcirc | |
;; default port | |
(setq rcirc-default-port 7000) | |
;; be notified of any activity in channels not currently visible | |
(rcirc-track-minor-mode 1) | |
;; auto join Channels | |
(setq rcirc-server-alist | |
'(("irc.freenode.net" | |
:channels ("#ubuntu-cn" "#oddmuse") | |
:port 7000))) | |
;; identify yourself | |
(setq rcirc-authinfo | |
'(("freenode" nickserv "weakish" "mypassword"))) | |
;; check spelling | |
(add-hook 'rcirc-mode-hook (lambda () | |
(flyspell-mode 1))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment