Emacs 安裝與體驗

2022-03-05 11:24:17 字數 1507 閱讀 2960

進入c:\program files\emacs\bin目錄下,執行addpm.exe

下面我們要動一些手腳,因為將配置檔案放在c盤是不理想的,比如重灌系統等,容易丟失配置資訊。我們開啟剛剛生成的.emacs檔案,按如下修改

1.

(custom-set-variables

2.;; custom-set-variables was added by custom.

3.;; if you edit it by hand, you could mess it up, so be careful.

4.;; your init file should contain only one such instance.

5.;; if there is more than one, they won't work right.

6.'(show-paren-mode t))

7.(custom-set-faces

8.;; custom-set-faces was added by custom.

9.;; if you edit it by hand, you could mess it up, so be careful.

10.;; your init file should contain only one such instance.

11.;; if there is more than one, they won't work right.

12.)

13.(load-file

"c:/program files/emacs/.emacs")

等等,我們的c:\program files\emacs下似乎並沒有.emacs檔案,好吧,我們現在建立乙個吧,只能用命令列建立,先隨便建立乙個什麼檔案,然後用命令列進行改名,比方說,我們建立了乙個emacs.txt檔案,然後使用rename emacs.txt .emacs命令,間接的建立了乙個emasc配置檔案。

修改剛剛建立的.emacs檔案內容如下:

1.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

2.;; emacs in windows

3.;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

4.(setenv

"home"

"c:/program files/emacs")

5.(setenv

"path"

"c:/program files/emacs")

6.;; set the default file path

7.(setq default-directory "~/")

emacs安裝與配置 Centaur Emacs

yay s emacs mv emacs.d emacs.d.bak git clone depth 1 git emacs.demacs配置檔案有兩個位置 emacs 和 emacs.d init.el,我們使用後者 home因為emacs的所有檔案都整齊地包含在單個目錄中,所以它使目錄整潔。出於...

github ssh 配置 Emacs 安裝與配置

在 中管理文獻,即在最終的 中管理文獻。如何總結和整理學術文獻?www.zhihu.com 於是我也開始關注org mode 這一神器。我是個程式設計小白,這也阻擋不了我愛折騰的心。倒騰了一周,總算把emacs安裝配置好了,乙個得瑟,回知乎獻個醜,也希望和我一樣的程式設計小白能少走一點彎路。引用or...

docker安裝與體驗

1.使用yum安裝 1.1 更新系統 sudo yum update 1.2 設定docker的repo 1.3 安裝docker sudo yum install docker engine 1.4 使用systemctl管理docker sudo systemctl enable docker....