I am using :ensure t of use-package to install "go-prjectile" package which depends on "go-rename". But I would like to use a local version of "go-rename" and its path is already added to load-path.
My configuration:
(use-package go-rename :load-path "lisp/go-rename") (use-package go-projectile :ensure t) But every time when "go-projectile" is installed, the "go-rename" is also installed from melpa too.
Is there any way to only install "go-projectile" without install its dependencies?