summaryrefslogtreecommitdiff
path: root/.emacs.d
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-05-04 18:08:18 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-05-04 22:24:20 -0700
commit7954b5e4cadd1721eae56750189e3c6e32f96f3f (patch)
tree4ed01e8f1975d79f7ef92f4d2f980c8be69cb158 /.emacs.d
parent635c455a655066777575564aaf8f53b7b431d0c8 (diff)
downloaddotfiles-7954b5e4cadd1721eae56750189e3c6e32f96f3f.tar.gz
fix displaying cursor while over fill column indicator
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 8bb84d18..57d77af7 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -61,7 +61,7 @@
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:weight medium :height 105 :foundry "SRC" :family "Hack"))))
- '(fill-column-indicator ((t (:background "light gray" :foreground "light gray"))))
+ '(fill-column-indicator ((t (:background "light gray"))))
'(fixed-pitch ((t (:foundry "SRC" :family "Hack"))))
'(region ((t (:extend t :background "#EECD82"))) nil "Colour is from the Lucid build.")
'(variable-pitch ((t (:weight regular :height 120 :foundry "bitstream" :family "Bitstream Charter"))))
@@ -171,6 +171,7 @@ windows side-by-side in the frame."
'(dired-listing-switches "--group-directories-first -alh")
'(dired-omit-files "\\`\\." nil nil "Exclude all dotfiles (no need for . and .. in dired afaict).")
'(dired-recursive-copies 'always)
+ '(display-fill-column-indicator-character 32)
'(enable-recursive-minibuffers t)
'(eshell-cmpl-cycle-completions nil nil nil "This makes Eshell completions a bit more like bash's.")
'(eshell-history-size 5000)