X-Git-Url: https://code.delx.au/dotemacs/blobdiff_plain/306c35f878851962e098dee90a417fc6e05d31cb..2c20243eed4f74a37291e2d8b00079ad3a7ac8ff:/lisp/my-minor-modes.el diff --git a/lisp/my-minor-modes.el b/lisp/my-minor-modes.el index ede7b37..eb24688 100644 --- a/lisp/my-minor-modes.el +++ b/lisp/my-minor-modes.el @@ -14,6 +14,7 @@ (setq avy-all-windows nil) (setq avy-timeout-seconds 0.3) (setq avy-keys '(?a ?o ?e ?u ?h ?t ?n ?s)) +(setq avy-style 'at) (require 'change-inner) @@ -36,6 +37,16 @@ (define-key m (kbd "C-c RET") 'goto-address-at-point) m)) +(require 'goto-chg) + +(require 'highlight-indent-guides) +(add-hook 'prog-mode-hook 'highlight-indent-guides-mode) +(setq highlight-indent-guides-method 'character) +(setq highlight-indent-guides-responsive 'top) +(setq highlight-indent-guides-auto-enabled nil) +(set-face-foreground 'highlight-indent-guides-character-face "#333333") +(set-face-foreground 'highlight-indent-guides-top-character-face "#726464") + (require 'highlight-symbol) (add-hook 'prog-mode-hook #'highlight-symbol-mode) (add-hook 'prog-mode-hook #'highlight-symbol-nav-mode) @@ -45,11 +56,7 @@ (global-hl-line-mode) (require 'hl-todo) -(add-hook 'prog-mode-hook #'hl-todo-mode) - -(require 'indent-guide) -(indent-guide-global-mode) -(setq indent-guide-recursive t) +(global-hl-todo-mode) (require 'jump-char) @@ -74,11 +81,10 @@ (require 'diminish) (add-hook 'after-init-hook (lambda () + (diminish 'counsel-mode) (diminish 'editorconfig-mode) - (diminish 'elisp-slime-nav-mode) (diminish 'git-gutter-mode) (diminish 'highlight-symbol-mode) - (diminish 'indent-guide-mode) + (diminish 'highlight-indent-guides-mode) (diminish 'ivy-mode) - (diminish 'tern-mode) (diminish 'yas-minor-mode)))