spell and linum abilities disabled by default to increase runtime performance

This commit is contained in:
Sameer Rahmani 2017-03-28 04:40:54 +04:30
parent 5ec64ef257
commit 9fe655945a
2 changed files with 5 additions and 3 deletions

View File

@ -6,7 +6,7 @@
(theme themes/color-theme-monokai) (theme themes/color-theme-monokai)
;; Disable abilities which we do not want to load ;; Disable abilities which we do not want to load
(disable 'rbenv 'helm) (disable 'rbenv 'helm 'spell 'linum)
;; Activate these extensions ;; Activate these extensions
(activate-extensions 'editor (activate-extensions 'editor

View File

@ -104,8 +104,10 @@
(column-number-mode t) (column-number-mode t)
;; linum mode ;; linum mode
(global-linum-mode) (ability linum ()
(setq linum-format " %3d ") "Line numbering ability"
(global-linum-mode)
(setq linum-format " %3d "))
(menu-bar-mode -1) (menu-bar-mode -1)
(show-paren-mode t) (show-paren-mode t)