diff options
author | Jesús <heckyel@hyperbola.info> | 2019-05-14 14:05:25 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-05-14 14:05:25 -0500 |
commit | c043be9622008bc454c0e1259703705324949826 (patch) | |
tree | bfc02ad9442446205ad5f6cf9dac8e0f52d7ffb3 /modules/init-gui.el | |
parent | a3b882775d37e73d36c16074a05f5d27cb18365b (diff) | |
download | emacs-personal-c043be9622008bc454c0e1259703705324949826.tar.lz emacs-personal-c043be9622008bc454c0e1259703705324949826.tar.xz emacs-personal-c043be9622008bc454c0e1259703705324949826.zip |
remove duplicate code-cleanup
Diffstat (limited to 'modules/init-gui.el')
-rw-r--r-- | modules/init-gui.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/init-gui.el b/modules/init-gui.el index 9bd32a5..962e968 100644 --- a/modules/init-gui.el +++ b/modules/init-gui.el @@ -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 |