Advertisement
Dash275

.emacs (disrespected)

Oct 6th, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.96 KB | None | 0 0
  1. (custom-set-variables
  2.  ;; custom-set-variables was added by Custom.
  3.  ;; If you edit it by hand, you could mess it up, so be careful.
  4.  ;; Your init file should contain only one such instance.
  5.  ;; If there is more than one, they won't work right.
  6.  '(ansi-color-names-vector ["black" "#d55e00" "#009e73" "#f8ec59" "#0072b2" "#cc79a7" "#56b4e9" "white"])
  7.  '(column-number-mode t)
  8.  '(custom-enabled-themes (quote (solarized-dark)))
  9.  '(inhibit-startup-screen t)
  10.  '(initial-scratch-message nil)
  11.  '(scroll-bar-mode nil)
  12.  '(show-paren-mode t)
  13.  '(tool-bar-mode nil)
  14.  '(tooltip-mode nil)
  15.  '(cua-mode 1)
  16.  '(global-font-lock-mode 1)
  17.  '(global-linum-mode 1)
  18.  '(require 'package)
  19.  '(package-initialize)
  20.  '(tab-always-indent 1) ;here and down is not respected
  21.  '(setq-default c-electric-flag nil)
  22.  '(setq-default indent-tabs-mode nil)
  23.  '(setq-default electric-indent-mode nil)
  24.  '(setq-default electric-layout-mode nil)
  25.  '(setq-default tab-width 4)
  26.  '(w32-send-sys-command 61488)
  27.  '(setq backup-inhibited t)
  28.  '(setq auto-save-default nil)
  29.  '(setq make-backup-files nil) ; stop creating ~ files
  30.  '(setq package-archives '(("ELPA" . "http://tromey.com/elpa/")
  31.                           '("gnu" . "http://elpa.gnu.org/packages/")
  32.                           '("marmalade" . "http://marmalade-repo.org/packages/")
  33.                           '("melpa" . "http://melpa.milkbox.net/packages/")
  34.                           )
  35.   ) ;end disrespected things
  36. )
  37. (custom-set-faces
  38.  ;; custom-set-faces was added by Custom.
  39.  ;; If you edit it by hand, you could mess it up, so be careful.
  40.  ;; Your init file should contain only one such instance.
  41.  ;; If there is more than one, they won't work right.
  42.  '(default ((t (:family "monoOne" :foundry "outline" :slant normal :weight normal :height 143 :width normal))))
  43. )
  44.  
  45. (when (>= emacs-major-version 24)
  46.   (require 'package)
  47.   (package-initialize)
  48.   (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
  49.   (evil-mode 1)
  50.   )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement