diff options
author | Alan Pearce | 2017-07-04 09:57:55 +0200 |
---|---|---|
committer | Alan Pearce | 2017-07-04 09:57:55 +0200 |
commit | 1b5b806cc3ed758ff53e38ff0695b824e84d84c3 (patch) | |
tree | f6d353ce19da3de67d206a6d9c4107428d66df75 /emacs/.emacs.d/init.org | |
parent | 92bdf0b68575dea2a7c5335c76611c5e66508b29 (diff) | |
download | nixfiles-1b5b806cc3ed758ff53e38ff0695b824e84d84c3.tar.lz nixfiles-1b5b806cc3ed758ff53e38ff0695b824e84d84c3.tar.zst nixfiles-1b5b806cc3ed758ff53e38ff0695b824e84d84c3.zip |
Emacs: Remove column and line number from modeline
Diffstat (limited to 'emacs/.emacs.d/init.org')
-rw-r--r-- | emacs/.emacs.d/init.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index a6474799..406c15f3 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -286,7 +286,8 @@ correct, at least for Liberation Mono. ** Modeline #+BEGIN_SRC emacs-lisp -(column-number-mode t) +(column-number-mode -1) +(line-number-mode -1) (size-indication-mode t) (setq frame-title-format '("%f" (dired-directory dired-directory))) |