Files
dotfiles/emacs/.emacs.d/lisp/core/editor.el
2025-12-24 16:16:29 +01:00

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