Created
November 29, 2012 02:22
-
-
Save ignisf/4166373 to your computer and use it in GitHub Desktop.
.emacs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'package) | |
(add-to-list | |
'package-archives '("melpa". "http://melpa.milkbox.net/packages/")) | |
(package-initialize) | |
(require 'autopair) | |
(autopair-global-mode) | |
(require 'auto-complete-config) | |
(ac-config-default) | |
(require 'fill-column-indicator) | |
(define-globalized-minor-mode global-fci-mode fci-mode (lambda () (fci-mode 1))) | |
(global-fci-mode 1) | |
(require 'flymake) | |
(require 'flymake-ruby) | |
(add-hook 'ruby-mode-hook 'flymake-ruby-load) | |
(require 'ido) | |
(ido-mode t) | |
;; Ruby Programming | |
(require 'ruby-end) | |
(require 'ruby-tools) | |
(require 'rspec-mode) | |
(require 'ruby-block) | |
(require 'rvm) | |
(rvm-use-default) | |
(autoload 'scss-mode "scss-mode") | |
(add-to-list 'auto-mode-alist '("\\.scss\\'" . scss-mode)) | |
(require 'rinari) | |
(require 'smooth-scrolling) | |
(require 'whitespace) | |
(global-whitespace-mode 1) | |
(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. | |
'(blink-cursor-mode nil) | |
'(blink-matching-paren t) | |
'(custom-enabled-themes (quote (adwaita))) | |
'(desktop-save-mode t) | |
'(fill-column 80) | |
'(font-use-system-font t) | |
'(fringe-mode 0 nil (fringe)) | |
'(inhibit-startup-screen t) | |
'(rspec-use-rake-flag nil) | |
'(rspec-use-rvm t) | |
'(ruby-block-highlight-toggle t) | |
'(save-place t nil (saveplace)) | |
'(show-paren-mode t) | |
'(tool-bar-mode nil) | |
'(whitespace-style (quote (tabs face trailing empty tab-mark)))) | |
(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. | |
) |
Author
ignisf
commented
Nov 30, 2012
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment