15 lines
258 B
EmacsLisp
15 lines
258 B
EmacsLisp
;;; core-editor
|
|
|
|
(setq standard-indent 4)
|
|
(setq tab-stop-list nil)
|
|
(setq indent-tabs-mode nil)
|
|
|
|
;; Setting variables
|
|
(setq vc-follow-symlinks 't)
|
|
(prefer-coding-system 'utf-8-unix)
|
|
(setq custom-file (null-device))
|
|
|
|
(provide 'editor)
|
|
|
|
;;; editor.el ends here
|