diff options
author | Jesus E <heckyel@riseup.net> | 2023-05-13 16:11:01 -0400 |
---|---|---|
committer | Jesus E <heckyel@riseup.net> | 2023-05-13 16:11:01 -0400 |
commit | 749a1cb33f8e83436c0f304b1b5e29ee2042153d (patch) | |
tree | aa289a0cc965ee04efa509565634c9b41f2f97ab /modules | |
parent | c5f0d846895422f47e2b7489a2d5fd5379eb5996 (diff) | |
download | emacs-personal-749a1cb33f8e83436c0f304b1b5e29ee2042153d.tar.lz emacs-personal-749a1cb33f8e83436c0f304b1b5e29ee2042153d.tar.xz emacs-personal-749a1cb33f8e83436c0f304b1b5e29ee2042153d.zip |
add comments to init gui
Diffstat (limited to 'modules')
-rw-r--r-- | modules/init-gui.el | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/modules/init-gui.el b/modules/init-gui.el index befaf36..50437ae 100644 --- a/modules/init-gui.el +++ b/modules/init-gui.el @@ -22,12 +22,18 @@ ;;------------------------------ ;; Core settings | UTF-8 please ;;------------------------------ +;; Set Unicode character priority (set-charset-priority 'unicode) +;; Set language environment to UTF-8 (set-language-environment "UTF-8") -(set-terminal-coding-system 'utf-8) ; pretty -(set-keyboard-coding-system 'utf-8) ; pretty -(set-selection-coding-system 'utf-8) ; please -(prefer-coding-system 'utf-8) ; with sugar on top +;; Set terminal coding system to UTF-8 +(set-terminal-coding-system 'utf-8) +;; Set keyboard coding system to UTF-8 +(set-keyboard-coding-system 'utf-8) +;; Set selection coding system to UTF-8 +(set-selection-coding-system 'utf-8) +;; Prefer UTF-8 coding system +(prefer-coding-system 'utf-8) ;;---------------------------------------------------------------------------- ;; Editor configuration |