nonsequitur / git-gutter-plus

146 stars 17 forks source link

Wierd interaction with line numbering #29

Open edcrypt opened 8 years ago

edcrypt commented 8 years ago

Only the frist number is shown: gitgutterlinenums

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)
  )