这次的基本配置主要包括:

  调整emacs的c的编辑模式indent的长度,在.emacs中加入:

(setq-default c-basic-offset 8
tab-width 8
indent-tabs-mode t)

  调整color-theme,在将color-theme要求的安装包放到.emacs.d的customer的文件夹中,并将~/.emacs.d/customer加入emacs的load-path中,在~/.emacs中加入:

(require 'color-theme) 
(color-theme-initialize)
(color-theme-arjen)

arjen---这个主题感觉还不错。

有空一定要好好研究下comman-lisp的使用方法 ,囧死了真是。

设置默认字体大小

(set-default-font "courier 10 pitch-14") 

 

相关文章:

猜你喜欢
  • 2021-08-11
  • 2021-09-30
  • 2021-08-05
  • 2021-06-12
  • 2021-06-12
相关资源
相似解决方案