fix(emacs): use keymap-global-set
instead of deprecated global-set-key
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
parent
57fb029217
commit
6d91530d1a
3 changed files with 14 additions and 14 deletions
|
@ -93,8 +93,8 @@
|
|||
("https://blog.cleancoder.com/atom.xml" blog)))
|
||||
|
||||
;; Magit
|
||||
(global-set-key (kbd "C-c g g") #'magit)
|
||||
(global-set-key (kbd "C-c g b") #'magit-blame)
|
||||
(keymap-global-set "C-c g g" #'magit)
|
||||
(keymap-global-set "C-c g b" #'magit-blame)
|
||||
(setq auth-sources '("~/.authinfo"))
|
||||
|
||||
;; Projectile
|
||||
|
@ -114,7 +114,7 @@
|
|||
(neotree-hide)
|
||||
(neotree-dir current-directory))))
|
||||
|
||||
(global-set-key (kbd "C-c t") #'neotree-toggle-current-directory)
|
||||
(keymap-global-set "C-c t" #'neotree-toggle-current-directory)
|
||||
(setq neo-theme 'icon)
|
||||
|
||||
;; Orderless
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue