diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-11-15 07:56:48 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-11-15 07:56:48 -0800 |
commit | 28068e7ee303c9873a3ee70e9c832e99e4e1d3e0 (patch) | |
tree | 85a666178976c260f37e053561b6f06b133c97b7 /emacs.d | |
parent | [emacs] Add function's name to mode-line. (diff) | |
download | emacs.d-28068e7ee303c9873a3ee70e9c832e99e4e1d3e0.tar.gz |
[emacs] Add column number to mode-line.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/inits/00_ui.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/emacs.d/inits/00_ui.el b/emacs.d/inits/00_ui.el index 22e392f..ba11e7e 100644 --- a/emacs.d/inits/00_ui.el +++ b/emacs.d/inits/00_ui.el @@ -12,9 +12,8 @@ (setq frame-title-format '(buffer-file-name "%f" ("%b"))) -;; and lose the stupid pipe chars on the split-screen bar -;; (set-face-foreground 'vertical-border "white") -;; (set-face-background 'vertical-border "white") +;; show the column number in the mode-line +(setq column-number-mode t) ;; (set-fringe-mode 1) |