diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-10-22 13:24:41 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-10-22 13:24:41 +0200 |
commit | 016fbfbdb52f2658c476901aaca3b0e4569ec353 (patch) | |
tree | b70c78326985d4e8b0d00e63e839ca2a717105ae | |
parent | 18a312401b4c8a7155b733dc9dd371fdff1d3d04 (diff) |
Show line- and columnnumbers in emacs statusbar
-rw-r--r-- | emacs | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -10,4 +10,8 @@ ;; hilight actual line (global-hl-line-mode 1) -(set-face-background 'hl-line "#333")
\ No newline at end of file +(set-face-background 'hl-line "#333") + +;; show line- and columnnumber +(line-number-mode 1) +(column-number-mode 1)
\ No newline at end of file |