Emacs. Файл инициализации. Настройки
.emacs файл:
=================================================
(add-to-list ’load-path(expand-file-name «~/path_to_emacs_files“))
(require ‘init)
=================================================
~/path_to_emacs_files/ файл:
=================================================
(load-theme ’leuven)
(setq frame-title-format “DariaEmacs“)
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(set-default ’cursor-type ’hbar)
(column-number-mode)
(fset ’yes-or-no-p ’y-or-n-p)
(ido-mode)
(provide ’init)
=================================================