;; alias yes-or-no to y-or-n (fset 'yes-or-no-p 'y-or-n-p) ;; set utf-8 as the default encoding (prefer-coding-system 'utf-8-unix) (setq auto-save-default nil) (setq auto-save-list-file-prefix nil) ;; *no* backups (setq make-backup-files nil) ;; always add a newline (setq require-final-newline t) ;; follow symlinks (setq vc-follow-symlinks t) (setq tab-always-indent 'complete) (use-package exec-path-from-shell :ensure t :config (exec-path-from-shell-initialize)) (use-package server :config (unless (server-running-p) (server-start)))