fix missing packages
Error (use-package): Failed to install gitconfig-mode: Package ‘gitconfig-mode-’ is unavailable Error (use-package): Failed to install gitignore-mode: Package ‘gitignore-mode-’ is unavailable Error (use-package): Failed to install gitattributes-mode: Package ‘gitattributes-mode-’ is unavailable
This commit is contained in:
parent
9fd02a16f8
commit
1c82edd5bb
@ -9,7 +9,7 @@
|
|||||||
'(anzu-replace-to-string-separator " => ")
|
'(anzu-replace-to-string-separator " => ")
|
||||||
'(anzu-search-threshold 1000)
|
'(anzu-search-threshold 1000)
|
||||||
'(package-selected-packages
|
'(package-selected-packages
|
||||||
'(editorconfig git-gutter-fringe yaml-mode whitespace-cleanup-mode which-key web-mode vue-mode use-package undo-tree smartparens sass-mode rjsx-mode rainbow-mode py-autopep8 projectile pkgbuild-mode pip-requirements php-refactor-mode nginx-mode neotree markdown-mode log4j-mode json-mode js2-refactor ivy-rich ivy-hydra highlight-indent-guides go-mode gitignore-mode gitconfig-mode gitattributes-mode git-timemachine flycheck eslintd-fix emmet-mode elpy dotenv-mode doom-themes doom-modeline dokuwiki-mode diminish crystal-mode counsel company-quickhelp company-php apache-mode anzu dockerfile-mode)))
|
'(dotenv-mode web-mode vue-mode company-php php-mode php-refactor-mode markdown-mode js2-refactor ivy-hydra hydra log4j-mode dashboard neotree highlight-indent-guides doom-modeline which-key doom-themes yaml-mode whitespace-cleanup-mode use-package undo-tree smartparens shrink-path sass-mode rjsx-mode rainbow-mode py-autopep8 projectile pkgbuild-mode pip-requirements nginx-mode lua-mode json-mode ivy-rich go-mode git-timemachine git-modes git-gutter-fringe flycheck eslintd-fix emmet-mode elpy editorconfig dokuwiki-mode dockerfile-mode diminish crystal-mode counsel company-quickhelp apache-mode anzu all-the-icons)))
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
@ -64,22 +64,20 @@
|
|||||||
(message "NO git-gutters-fringe!"))
|
(message "NO git-gutters-fringe!"))
|
||||||
))))
|
))))
|
||||||
|
|
||||||
(use-package gitconfig-mode
|
(use-package git-modes
|
||||||
:ensure t
|
:ensure t
|
||||||
:mode ("/\\.?git/?config$"
|
:config
|
||||||
"/\\.gitmodules$")
|
(setq auto-mode-alist
|
||||||
:hook
|
(append auto-mode-alist
|
||||||
(gitconfig-mode . flyspell-mode))
|
'(("/\\.?git/?config$" . gitconfig-mode)
|
||||||
|
("/\\.gitmodules$" . gitconfig-mode)
|
||||||
(use-package gitignore-mode
|
("/\\.gitignore$" . gitignore-mode)
|
||||||
:ensure t
|
("/\\.git/info/exclude$" . gitignore-mode)
|
||||||
:mode ("/\\.gitignore$"
|
("/git/ignore$" . gitignore-mode)
|
||||||
"/\\.git/info/exclude$"
|
("/.dockerignore\\'" . gitignore-mode)
|
||||||
"/git/ignore$"))
|
("/\\.gitattributes\\'" . gitattributes-mode)
|
||||||
|
("/info/attributes\\'" . gitattributes-mode)
|
||||||
(use-package gitattributes-mode
|
("/git/attributes\\'" . gitattributes-mode)))))
|
||||||
:ensure t
|
|
||||||
:defer t)
|
|
||||||
|
|
||||||
(use-package git-timemachine
|
(use-package git-timemachine
|
||||||
:ensure t
|
:ensure t
|
||||||
|
Loading…
x
Reference in New Issue
Block a user