Add gitconfig-mode and writeroom-mode, fix browse-kill-ring

This commit is contained in:
2012-12-11 17:38:23 +00:00
parent 3333201f80
commit d95d1bf86d
2 changed files with 9 additions and 0 deletions

View File

@@ -39,6 +39,10 @@
;; Kill-Ring related (via helpers.el).
(global-set-key (kbd "M-Y") 'yank-pop-forwards)
;; Browse the kill-ring.
(when (require 'browse-kill-ring nil 'noerror)
(global-set-key (kbd "C-x C-y") 'browse-kill-ring))
;; Align to equal signs (via helpers.el).
(global-set-key (kbd "C-x a =") 'align-region-to-equals)
(global-set-key (kbd "M-]") 'align-region-to-equals)

View File

@@ -43,6 +43,7 @@
flymake-sass
flymake-shell
full-ack
gitconfig-mode
haml-mode
highlight-indentation
inf-ruby
@@ -69,6 +70,7 @@
twilight-bright-theme
undo-tree
writegood-mode
writeroom-mode
yaml-mode
yasnippet)
"A list of packages to install from MELPA at launch.")
@@ -130,6 +132,9 @@
;; Load Auto-Complete
(require 'auto-complete)
;; Load browse-kill-ring
(require 'browse-kill-ring)
;; Load and setup Escreen
(when (require 'escreen nil 'noerror)
(escreen-install))