diff options
author | Franck Cuny <franck@fcuny.net> | 2021-10-16 14:21:30 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-10-16 14:21:30 -0700 |
commit | c207d7be5480e7e030460ede3e4f53de346b7f57 (patch) | |
tree | c4d13357bfde5ea92426aeafddadeed3fd8b0659 /emacs | |
parent | emacs: replace org-bullets with org-superstar (diff) | |
download | emacs.d-c207d7be5480e7e030460ede3e4f53de346b7f57.tar.gz |
emacs: get rid of the fringe
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/custom/fcuny-ui.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el index 2a20666..487ca3c 100644 --- a/emacs/custom/fcuny-ui.el +++ b/emacs/custom/fcuny-ui.el @@ -1,7 +1,11 @@ (use-package fringe :custom - (left-fringe-width 5) - (right-fringe-width 5)) + (left-fringe-width 0) + (right-fringe-width 0) + (fringes-outside-margins nil) + (indicate-buffer-boundaries nil) + (indicate-empty-lines nil) + (overflow-newline-into-fringe t)) (use-package scroll-bar :config @@ -26,6 +30,7 @@ modus-themes-lang-checkers '(text-also background) modus-themes-mode-line '(accented) modus-themes-diffs '(desaturated) + modus-themes-fringes nil modus-themes-intense-hl-line t modus-themes-paren-match '(intense) modus-themes-syntax '(yellow-comments green-strings) |