Switch to solarized, remove autofill in text mode and enable global-linum-mode

This commit is contained in:
Ivan Malison 2013-09-25 15:02:09 -07:00
parent da4ae81c4b
commit ab85b3ce95

View File

@ -21,7 +21,7 @@
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/zenburn")
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/solarized")
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
(load-theme 'zenburn t)
(load-theme 'solarized-dark t)
;; =============================================================================
;; General Emacs Options
@ -47,6 +47,7 @@
;; Display line and column numbers in mode line.
(line-number-mode t)
(column-number-mode t)
(global-linum-mode t)
;; Don't disable downcase and upcase region.
(put 'upcase-region 'disabled nil)
@ -71,6 +72,8 @@
(defun no-auto-fill-hook () (auto-fill-mode -1))
(add-hook 'html-mode-hook 'no-auto-fill-hook)
(add-hook 'text-mode-hook 'no-auto-fill-hook)
(remove-hook 'text-mode-hook #'turn-on-auto-fill)
(setq flyspell-issue-welcome-flag nil)