scripts/emacs/auto/-defaults.el

17 lines
460 B
EmacsLisp
Raw Normal View History

2020-01-16 01:34:14 -08:00
(defvaralias 'c-basic-offset 'tab-width)
2020-01-16 21:28:40 -08:00
(defvaralias 'ruby-indent-level 'tab-width)
2020-01-16 01:34:14 -08:00
(defvaralias 'rust-indent-offset 'tab-width)
2020-01-22 11:11:54 -08:00
(defalias #'yes-or-no-p #'y-or-n-p)
2020-01-16 13:45:35 -08:00
(add-to-list 'default-frame-alist '(width . 80))
(add-to-list 'default-frame-alist '(height . 55))
2020-01-16 01:34:14 -08:00
2020-01-30 11:55:18 -08:00
(require 'rand-theme)
(setq rand-theme-wanted '(base16-atelier-cave
base16-atelier-forest
base16-atelier-heath))
(rand-theme)
2020-01-16 01:34:14 -08:00
;; EOF