Compare commits

..

2 Commits

Author SHA1 Message Date
Jeremy Dormitzer
c49377a82d Disable undohist for commit buffers 2022-04-06 13:34:44 -04:00
Jeremy Dormitzer
d1ee43b652 Teach git-link how to handle Spotify GHE repos 2022-04-06 13:34:12 -04:00
2 changed files with 5 additions and 1 deletions

View File

@ -42,6 +42,8 @@
:config
(add-to-list 'git-link-remote-alist '("git.jeremydormitzer.com" git-link-bitbucket))
(add-to-list 'git-link-commit-remote-alist '("git.jeremydormitzer.com" git-link-commit-bitbucket))
(add-to-list 'git-link-remote-alist '("ghe.spotify.net" git-link-github))
(add-to-list 'git-link-commit-remote-alist '("ghe.spotify.net" git-link-commit-github))
:general
(leader-map "gy" #'git-link
"gl" #'git-link-browse

View File

@ -2,6 +2,8 @@
(use-package undo-fu)
(use-package undohist
:hook (after-init . undohist-initialize))
:hook (after-init . undohist-initialize)
:custom
(undohist-ignored-files '("COMMIT_EDITMSG")))
(provide 'init-undo)