diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-24 23:36:19 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-24 23:36:19 -0400 |
commit | 62ae675e23d2c02c3123119363dc4e62b7d34964 (patch) | |
tree | 034669f60c50cc46fa60714ed7f5f8d219c8fe0a /init.el | |
parent | Add keybinds for commenting/uncommenting things (diff) | |
download | mmosmacs-62ae675e23d2c02c3123119363dc4e62b7d34964.tar.gz mmosmacs-62ae675e23d2c02c3123119363dc4e62b7d34964.tar.bz2 mmosmacs-62ae675e23d2c02c3123119363dc4e62b7d34964.zip |
Fix fringe / diff-hl display
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -117,7 +117,6 @@ | |||
117 | (tool-bar-mode -1) | 117 | (tool-bar-mode -1) |
118 | (tooltip-mode -1) | 118 | (tooltip-mode -1) |
119 | (menu-bar-mode -1) | 119 | (menu-bar-mode -1) |
120 | (set-fringe-mode 5) | ||
121 | (setq ring-bell-function 'ignore) | 120 | (setq ring-bell-function 'ignore) |
122 | (setq use-dialog-box nil | 121 | (setq use-dialog-box nil |
123 | inhibit-startup-message t | 122 | inhibit-startup-message t |
@@ -511,6 +510,8 @@ | |||
511 | 510 | ||
512 | (use-package diff-hl | 511 | (use-package diff-hl |
513 | :straight t | 512 | :straight t |
513 | :config | ||
514 | (set-fringe-mode '(10 . 0)) | ||
514 | :hook | 515 | :hook |
515 | (prog-mode . diff-hl-mode) | 516 | (prog-mode . diff-hl-mode) |
516 | (diff-hl-mode . diff-hl-flydiff-mode)) | 517 | (diff-hl-mode . diff-hl-flydiff-mode)) |