better org support and line numbers

This commit is contained in:
Eli Mellen 2019-09-04 09:53:24 -04:00
parent 704caca3ab
commit 019e839b03
1 changed files with 7 additions and 0 deletions

View File

@ -17,6 +17,10 @@
(column-number-mode +1)
(global-hl-line-mode 1) ; highlight the currently active line
;; Display line numbers, but only on Emacs26 or higher
(when (version<= "26.0.50" emacs-version )
(global-display-line-numbers-mode))
;; Silkier scrolling
(setq scroll-margin 0
scroll-conservatively 10000
@ -166,6 +170,9 @@
:mode (("\\.org$" . org-mode))
:ensure t)
(setq org-todo-keywords
'((sequence "TODO" "IN-PROCESS" "FOLLOW-UP" "|" "DONE")))
(use-package org-bullets
:ensure t
:config