diff options
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 |