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)
;; Disable abilities which we do not want to load
(disable 'rbenv 'helm)
(disable 'rbenv 'helm 'spell 'linum)
;; Activate these extensions
(activate-extensions 'editor

View File

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