emacs settings backup

1
(require 'package) (setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") ("marmalade" . "http://marmalade-repo.org/packages/") ("melpa" . "http://melpa.milkbox.net/packages/"))) (package-initialize) (when (not package-archive-contents) (package-refresh-contents)) (let ((default-directory "~/.emacs.d/elpa/")) (normal-top-level-add-to-load-path '(".")) (normal-top-level-add-subdirs-to-load-path)) (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(custom-safe-themes (quote ("18e89f93cbaaac214202142d910582354d36639f21f32b04718ca6425dbc82a2" default) )) '(safe-local-variable-values (quote ((checkdoc-minor-mode . t) (mangle-whitespa ce . t))))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) (require 'exec-path-from-shell) (when (memq window-system '(mac ns)) (exec-path-from-shell-initialize)) (load "auctex.el" nil t t) (setq TeX-engine 'xetex) ;; if you prefer xetex that is, the default is pdftex (setq TeX-PDF-mode t) ;ess-mode configuration (setq ess-ask-for-ess-directory nil) (setq inferior-R-program-name "/usr/local/bin/R") (setq ess-local-process-name "R") (setq ansi-color-for-comint-mode 'filter) (setq comint-scroll-to-bottom-on-input t) (setq comint-scroll-to-bottom-on-output t) (setq comint-move-point-for-output t) (setq ess-eval-visibly-p nil) (require 'ess-site)

Upload: akshay-rao

Post on 16-Jul-2016

214 views

Category:

Documents


0 download

DESCRIPTION

Setting description for backing up EMACS

TRANSCRIPT

(require 'package)(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") ("marmalade" . "http://marmalade-repo.org/packages/") ("melpa" . "http://melpa.milkbox.net/packages/")))(package-initialize)(when (not package-archive-contents) (package-refresh-contents))(let ((default-directory "~/.emacs.d/elpa/")) (normal-top-level-add-to-load-path '(".")) (normal-top-level-add-subdirs-to-load-path))(custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(custom-safe-themes (quote ("18e89f93cbaaac214202142d910582354d36639f21f32b04718ca6425dbc82a2" default))) '(safe-local-variable-values (quote ((checkdoc-minor-mode . t) (mangle-whitespace . t)))))(custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. )(require 'exec-path-from-shell)(when (memq window-system '(mac ns)) (exec-path-from-shell-initialize))(load "auctex.el" nil t t)(setq TeX-engine 'xetex) ;; if you prefer xetex that is, the default is pdftex(setq TeX-PDF-mode t)

;ess-mode configuration(setq ess-ask-for-ess-directory nil) (setq inferior-R-program-name "/usr/local/bin/R") (setq ess-local-process-name "R") (setq ansi-color-for-comint-mode 'filter) (setq comint-scroll-to-bottom-on-input t) (setq comint-scroll-to-bottom-on-output t) (setq comint-move-point-for-output t)(setq ess-eval-visibly-p nil)(require 'ess-site)