Skip to content

Instantly share code, notes, and snippets.

@ignisf
Created November 29, 2012 02:22
Show Gist options
  • Save ignisf/4166373 to your computer and use it in GitHub Desktop.
Save ignisf/4166373 to your computer and use it in GitHub Desktop.
.emacs
(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.
)
@ignisf
Copy link
Author

ignisf commented Nov 30, 2012

  auctex         11.86    installed  Integrated environment for *TeX*
  auto-complete      20121022.... installed  Auto Completion for GNU Emacs [source: github]
  autopair       20121120.... installed  Automagically pair braces and quotes like TextMate [source: github]
  fill-column-ind... 20120715.... installed  Graphically indicate the fill column [source: github]
  findr          20120124.849 installed  Breadth-first file-finding facility for (X)Emacs [source: github]
  flymake-easy       20121107.... installed  Helpers for easily building flymake checkers [source: github]
  flymake-ruby       20121104.... installed  A flymake handler for ruby-mode files [source: github]
  inf-ruby       20120722.... installed  Run a ruby process in a buffer [source: github]
  inflections        20121016.957 installed  convert english words between singular and plural [source: github]
  jump           20121016.... installed  build functions which contextually jump between files [source: github]
  popup          20121020.... installed  Visual Popup User Interface [source: github]
  rinari         20121125.... installed  Rinari Is Not A Rails IDE [source: github]
  rspec-mode         20121030.... installed  No description available. [source: github]
  ruby-block         20111101.... installed  highlight matching block [source: wiki]
  ruby-compilation   20121111.... installed  run a ruby process in a compilation buffer [source: github]
  ruby-end       20121008.... installed  Automatic insertion of end blocks for Ruby. [source: github]
  ruby-interpolation 20120326.... installed  Ruby string interpolation helpers [source: github]
  ruby-test-mode     20121120.... installed  Minor mode for Behaviour and Test Driven [source: github]
  ruby-tools         20121008.... installed  Collection of handy functions for ruby-mode. [source: github]
  rvm            20121003.921 installed  Emacs integration for rvm [source: github]
  scss-mode      20121106.632 installed  Major mode for editing SCSS files [source: github]
  smooth-scroll      20120202.... installed  Minor mode for smooth scrolling and in-place scrolling. [source: github]
  smooth-scrolling   20121012.... installed  Make emacs scroll smoothly [source: github]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment