init.el: Remove timemachine and fix bindings
timemachine does not work with evil mode so remove it and fix some bindings. Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
parent
d394871e7c
commit
2bd885899d
1 changed files with 4 additions and 6 deletions
10
init.el
10
init.el
|
@ -203,6 +203,8 @@
|
||||||
:defer t)
|
:defer t)
|
||||||
(use-package evil-magit
|
(use-package evil-magit
|
||||||
:defer t)
|
:defer t)
|
||||||
|
(use-package magit-gitflow
|
||||||
|
:defer t)
|
||||||
(use-package helm-git-grep
|
(use-package helm-git-grep
|
||||||
:defer t)
|
:defer t)
|
||||||
(use-package helm-gitignore
|
(use-package helm-gitignore
|
||||||
|
@ -219,8 +221,6 @@
|
||||||
:defer t)
|
:defer t)
|
||||||
(use-package gitignore-mode
|
(use-package gitignore-mode
|
||||||
:defer t)
|
:defer t)
|
||||||
(use-package git-timemachine
|
|
||||||
:defer t)
|
|
||||||
(use-package git-link
|
(use-package git-link
|
||||||
:defer t
|
:defer t
|
||||||
:config
|
:config
|
||||||
|
@ -231,8 +231,6 @@
|
||||||
(global-git-gutter-mode +1))
|
(global-git-gutter-mode +1))
|
||||||
(use-package gitignore-templates
|
(use-package gitignore-templates
|
||||||
:defer t)
|
:defer t)
|
||||||
(use-package magit-gitflow
|
|
||||||
:defer t)
|
|
||||||
|
|
||||||
;; Custom keybinding
|
;; Custom keybinding
|
||||||
(use-package general
|
(use-package general
|
||||||
|
@ -343,8 +341,8 @@
|
||||||
"gI" '(helm-gitignore
|
"gI" '(helm-gitignore
|
||||||
:which-key "helm gitignore")
|
:which-key "helm gitignore")
|
||||||
"%" 'magit-gitflow-popup
|
"%" 'magit-gitflow-popup
|
||||||
"gt" 'gitignore-templates-insert
|
"gti" 'gitignore-templates-insert
|
||||||
"gft" 'gitignore-templates-new-file
|
"gtn" 'gitignore-templates-new-file
|
||||||
"gM" 'git-messenger:popup-message
|
"gM" 'git-messenger:popup-message
|
||||||
"gll" 'spacemacs/git-link
|
"gll" 'spacemacs/git-link
|
||||||
"glL" 'spacemacs/git-link-copy-url-only
|
"glL" 'spacemacs/git-link-copy-url-only
|
||||||
|
|
Loading…
Reference in a new issue