remove duplicate code-cleanup

This commit is contained in:
Jesús 2019-05-14 14:05:25 -05:00
parent a3b882775d
commit c043be9622
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
4 changed files with 5 additions and 8 deletions

View File

@ -79,9 +79,6 @@
(defalias 'redo 'undo-tree-redo)
(global-undo-tree-mode 1))
;;----------------------------------------------------------------------------
(load-file (concat user-emacs-directory "/modules/lib/myemacs.el"))
(provide 'init-editing-utils)
;; Local Variables:

View File

@ -48,12 +48,16 @@
;;----------------------------------------------------------------------------
(global-unset-key (kbd "C-z")) ; Stops C-z from minimizing window
(global-set-key (kbd "M-0") (lambda () (interactive) (modify-frame-parameters nil '((alpha . 100))))) ; M-0 standard visibility
(global-set-key (kbd "<f11>") 'myemacs/toggle-fullscreen) ; F11 FullScreen
(global-set-key (kbd "s-C-+") 'sacha/increase-font-size) ; C-+ increase font size
(global-set-key (kbd "s-C--") 'sacha/decrease-font-size) ; C-- decrease font size
(global-set-key (kbd "<f12>") 'revert-buffer-no-confirm)
(global-set-key (kbd "s-h") 'global-hl-line-mode) ; Highlight current line
;;---------------------------------------------------------------------------
;; FullScreen
;;---------------------------------------------------------------------------
(load-file (concat user-emacs-directory "/modules/lib/myemacs.el"))
(global-set-key (kbd "<f11>") 'myemacs/toggle-fullscreen) ; F11 FullScreen
;;----------------------------------------------------------------------------
;; clock

View File

@ -47,7 +47,6 @@
(global-set-key (kbd "M-%") 'anzu-query-replace)
(global-set-key (kbd "s-<SPC>") 'anzu-query-replace))
(load-file (concat user-emacs-directory "/modules/lib/myemacs.el"))
(provide 'init-modeline)
;; End:

View File

@ -24,8 +24,5 @@ read the .el files"
`(eval-after-load, feature
'(progn ,@body))))
;; Elapsed time
(load-file (concat user-emacs-directory "/modules/lib/myemacs.el"))
(provide 'init-utils)
;;; init-utils.el ends here