remove duplicate code-cleanup
This commit is contained in:
parent
a3b882775d
commit
c043be9622
@ -79,9 +79,6 @@
|
|||||||
(defalias 'redo 'undo-tree-redo)
|
(defalias 'redo 'undo-tree-redo)
|
||||||
(global-undo-tree-mode 1))
|
(global-undo-tree-mode 1))
|
||||||
|
|
||||||
;;----------------------------------------------------------------------------
|
|
||||||
(load-file (concat user-emacs-directory "/modules/lib/myemacs.el"))
|
|
||||||
|
|
||||||
(provide 'init-editing-utils)
|
(provide 'init-editing-utils)
|
||||||
|
|
||||||
;; Local Variables:
|
;; Local Variables:
|
||||||
|
@ -48,12 +48,16 @@
|
|||||||
;;----------------------------------------------------------------------------
|
;;----------------------------------------------------------------------------
|
||||||
(global-unset-key (kbd "C-z")) ; Stops C-z from minimizing window
|
(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 "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/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 "s-C--") 'sacha/decrease-font-size) ; C-- decrease font size
|
||||||
(global-set-key (kbd "<f12>") 'revert-buffer-no-confirm)
|
(global-set-key (kbd "<f12>") 'revert-buffer-no-confirm)
|
||||||
(global-set-key (kbd "s-h") 'global-hl-line-mode) ; Highlight current line
|
(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
|
;; clock
|
||||||
|
@ -47,7 +47,6 @@
|
|||||||
(global-set-key (kbd "M-%") 'anzu-query-replace)
|
(global-set-key (kbd "M-%") 'anzu-query-replace)
|
||||||
(global-set-key (kbd "s-<SPC>") '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)
|
(provide 'init-modeline)
|
||||||
|
|
||||||
;; End:
|
;; End:
|
||||||
|
@ -24,8 +24,5 @@ read the .el files"
|
|||||||
`(eval-after-load, feature
|
`(eval-after-load, feature
|
||||||
'(progn ,@body))))
|
'(progn ,@body))))
|
||||||
|
|
||||||
;; Elapsed time
|
|
||||||
(load-file (concat user-emacs-directory "/modules/lib/myemacs.el"))
|
|
||||||
|
|
||||||
(provide 'init-utils)
|
(provide 'init-utils)
|
||||||
;;; init-utils.el ends here
|
;;; init-utils.el ends here
|
||||||
|
Loading…
x
Reference in New Issue
Block a user