summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-09-04 13:58:23 -0400
committerDavid Robillard <d@drobilla.net>2024-09-04 13:58:23 -0400
commit766035cb861d2c0dabf095768321d74db99b119a (patch)
treebb552d91b42a957354bc1f5216e94e8e649fe8c5
parentaad7c827446ecbe958ba2a47b41b4a56a2980778 (diff)
downloaddotfiles-766035cb861d2c0dabf095768321d74db99b119a.tar.gz
dotfiles-766035cb861d2c0dabf095768321d74db99b119a.tar.bz2
dotfiles-766035cb861d2c0dabf095768321d74db99b119a.zip
Fix indentation
-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."