git-gutter-plus
git-gutter-plus copied to clipboard
Wierd interaction with line numbering
Only the frist number is shown:

My line numbers conf:
;; line numbers
(setq linum-format "%4d")
My git gutter+ conf (inside my after init hook)
;; Do stuff after package initialization
(defun my-after-init-hook ()
(require 'multiple-cursors)
;; Smex on M-x
(smex-initialize)
;; Helm
(require 'helm-config)
(helm-mode 1)
(helm-autoresize-mode 1)
(require 'helm-ls-git)
(setq helm-M-x-fuzzy-match t)
(setq helm-buffers-fuzzy-matching t
helm-recentf-fuzzy-match t)
(projectile-global-mode)
(setq projectile-completion-system 'helm)
(helm-projectile-on)
(global-git-gutter+-mode)
;; SubWordMode
(subword-mode)
)