diff options
author | eli <eli@newstartmobile.com> | 2023-01-05 13:25:14 -0500 |
---|---|---|
committer | eli <eli@newstartmobile.com> | 2023-01-05 13:25:14 -0500 |
commit | 566446664e50f76697ebd8bc40479eda3192d693 (patch) | |
tree | 627dd3e4bbfd9c6e78536312891f1198aad3a060 | |
parent | 530230fed60dc343c7fb454fa01f7346ce5b65b1 (diff) | |
download | emacs-566446664e50f76697ebd8bc40479eda3192d693.tar.gz |
*
-rw-r--r-- | init.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/init.el b/init.el index bcab4e8..cb71346 100644 --- a/init.el +++ b/init.el @@ -126,7 +126,8 @@ (setq window-divider-default-places 'right-only) (window-divider-mode) - +(setq-default left-fringe-width 1 right-fringe-width 8 + left-margin-width 1 right-margin-width 0) ;; ===== PACKAGES ===== @@ -166,8 +167,8 @@ ;; git (straight-use-package 'magit) -(straight-use-package 'git-gutter) -(add-hook 'prog-mode-hook #'global-git-gutter-mode) +; (straight-use-package 'git-gutter) +; (add-hook 'prog-mode-hook #'global-git-gutter-mode) ;; keep splits good sizes (straight-use-package 'golden-ratio) @@ -332,6 +333,8 @@ (straight-use-package 'exec-path-from-shell) (exec-path-from-shell-initialize) (add-hook 'after-init-hook #'global-flycheck-mode) +(setq-default flycheck-indication-mode 'left-margin) +(add-hook 'flycheck-mode-hook #'flycheck-set-indication-mode) ;; FLYSPELL (dolist (hook '(text-mode-hook)) |