org-mode customizations

This commit is contained in:
Kashish Sharma 2015-03-24 11:36:58 +05:30
parent 889af852e8
commit 21978bab43
1 changed files with 11 additions and 0 deletions

11
init.el
View File

@ -106,6 +106,17 @@
(global-set-key (kbd "C-x b") 'eval-buffer)
(global-unset-key (kbd "C-c s"))
(global-set-key (kbd "C-x T") 'neotree-toggle)
(global-set-key (kbd "C-x O") 'org-mode)
;;;; Just hit y or n to answer yes or no prompts! Shiny!
(defalias 'yes-or-no-p 'y-or-n-p)
(setq backup-by-copying t
backup-directory-alist
'(("." . "~/.emacs.d/saves/"))
delete-old-versions t
kept-new-versions 6
kept-old-versions 2
version-control t)
;;;; Fix multi-line indenting - thanks forcer!
;(defun hn/add-tab-in-front-of-every-line-in-region (beg end) (interactive "r")