Created
March 31, 2020 03:58
-
-
Save DPS0340/9a3374c2ce5dbb087e023a3abbcfaa48 to your computer and use it in GitHub Desktop.
emacs setting
This file contains hidden or 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
| ; (dolist (char-regexp alist) | |
| ; (set-char-table-range composition-function-table (car char-regexp) | |
| ; `([,(cdr char-regexp) 0 font-shape-gstring])))) | |
| (require 'package) | |
| (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) | |
| (package-initialize) | |
| (custom-set-variables | |
| ;; custom-set-variables was added by Custom. | |
| ;; If you edit it by hand, you could mess it up, so be careful. | |
| ;; Your init file should contain only one such instance. | |
| ;; If there is more than one, they won't work right. | |
| '(ansi-color-faces-vector | |
| [default default default italic underline success warning error]) | |
| '(desktop-save-mode t) | |
| '(package-selected-packages (quote (racket-mode sml-mode evil)))) | |
| (custom-set-faces | |
| ;; custom-set-faces was added by Custom. | |
| ;; If you edit it by hand, you could mess it up, so be careful. | |
| ;; Your init file should contain only one such instance. | |
| ;; If there is more than one, they won't work right. | |
| ) | |
| (require 'evil) | |
| (evil-mode 1) | |
| (global-set-key [C-mouse-4] 'text-scale-increase) | |
| (global-set-key [C-mouse-5] 'text-scale-decrease) | |
| (set-language-environment "Korean") | |
| (prefer-coding-system 'utf-8) | |
| (setq default-input-method "korean-hangul") | |
| (global-set-key (kbd "<Hangul>") 'toggle-input-method) | |
| (global-set-key (kbd "<S-SPC>") nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment