設定emacs的編碼

2021-04-30 19:53:17 字數 632 閱讀 7148

學習emacs,因為蘋果上的編碼使用unicode,所以配置emacs的編碼為gb2312。查資料了解了一些中文編碼的知識。

emacs的配置檔案:

(set-keyboard-coding-system 'cn-gb-2312)

(set-selection-coding-system 'cn-gb-2312)

(set-terminal-coding-system 'cn-gb-2312)

(set-buffer-file-coding-system 'gb2312)

(setq default-buffer-file-coding-system 'gb2312)

(setq locale-coding-system 'gb2312)

(set-language-environment-coding-systems "chinese-gb" nil)

(global-font-lock-mode t)

(auto-image-file-mode t)

(pc-selection-mode)

使用c-x ret r,可以改變當前開啟檔案的編碼,這是個很方便的功能,不過有了unicad之後,這個估計就用得少了。

用c-x ret f轉換當前檔案的編碼。

emacs 字元編碼

在vim中,我們可以通過set fencs utf 8,gbk告訴它按照先utf 8後gbk的順序自動識別開啟檔案的字元編碼。emacs也有一組字元編碼相關指令,整理如下 指令全名 set buffer file coding system 指令作用 改變當前buffer的編碼 呼叫方法 以目標編碼...

Emacs字型設定

首先,在emacs中,通過選單options set default font,設定好喜歡的字型。然後,把游標放到你所在的字型上,用命令m x describe font來檢視你當前使用的字型名稱 字型大小大小。把其中的字型資訊拷貝出來,寫到.emacs檔案裡 set default font ou...

Emacs 主題設定

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!首先安裝emacs的輔助外掛程式 sudo apt get install emacs goodies el 然後進入emacs emacs 最新版本已經自帶各種主題,只要敲入命令 color theme select 就會看到一大堆主題,選擇乙個...