Some additional changes to stuff
This commit is contained in:
parent
99dddafe63
commit
1390969075
9 changed files with 39 additions and 173 deletions
10
functions.el
10
functions.el
|
|
@ -42,4 +42,14 @@
|
|||
|
||||
(add-hook 'kill-emacs-hook 'byte-compile-init-dir)
|
||||
(add-hook 'emacs-lisp-mode-hook 'remove-elc-on-save)
|
||||
|
||||
;; Always start in fullscreen
|
||||
(defun toggle-fullscreen ()
|
||||
"Toggle full screen."
|
||||
(interactive)
|
||||
(set-frame-parameter
|
||||
nil 'fullscreen
|
||||
(when (not (frame-parameter nil 'fullscreen)) 'fullboth)))
|
||||
|
||||
(toggle-fullscreen)
|
||||
;;; functions.el ends here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue