2 Star 9 Fork 5

common-lisp / emacs-config

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
early-init.el 588 Bytes
一键复制 编辑 原始数据 按行查看 历史
fengzp 提交于 2024-03-20 00:11 . 升级到29.2版本
;;; Commentary:
;;; 作者:萍水相逢
;;; 版本:V2024
;;; 日期:2024-03
;;; URL:https://gitee.com/fengzp1208
;;; 说明: 影响启动的配置放到此文件中,可以被过早加载
;;; (c) fengzp, 2008-2024
;;; Code:
(setq gc-cons-threshold most-positive-fixnum)
(add-hook 'after-init-hook #'(lambda () (setq gc-cons-threshold 800000)))
(push '(scroll-bar-mode . nil) default-frame-alist)
(push '(tool-bar-mode . nil) default-frame-alist)
(when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
(when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
;;; early-init.el ends here
Emacs Lisp
1
https://gitee.com/common-lisp/emacs-config.git
git@gitee.com:common-lisp/emacs-config.git
common-lisp
emacs-config
emacs-config
V2024

搜索帮助