summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--emacs/.emacs.d/init.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index a969a64..378d579 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -39,7 +39,7 @@
(setq use-package-always-ensure t)
-;(use-package ansi-color :commands compile :after (ivy) :config (counsel-mode))
+;; (use-package ansi-color :commands compile :after (ivy) :config (counsel-mode))
(use-package counsel :after (ivy) :config (counsel-mode))
(use-package counsel-gtags :commands ggtags-mode)
@@ -126,7 +126,7 @@
(spaceline-define-segment buffer-position
"Buffer position in percent"
(format "%3d%%%% " (/ (* 100 (- (line-number-at-pos) 1))
- (max 1 (count-lines (point-min) (point-max))))))
+ (max 1 (count-lines (point-min) (point-max))))))
(spaceline-define-segment line-column
"The current line and column numbers."