Skip to content

Instantly share code, notes, and snippets.

@cryptstopher
Created December 13, 2019 01:30
Show Gist options
  • Save cryptstopher/18e5d682d3e0258070d93a1aabea3c4d to your computer and use it in GitHub Desktop.
Save cryptstopher/18e5d682d3e0258070d93a1aabea3c4d to your computer and use it in GitHub Desktop.
Some emacs style and comfort settings.
;; Removed the menu bar and toolbar (if you want that)
(menu-bar-mode -1)
(tool-bar-mode -1)
;; Enabled visual line mode (text wrapping)
(add-hook 'text-mode-hook 'visual-line-mode)
;; Made Emacs fill your display:
(custom-set-variables
 '(initial-frame-alist (quote ((fullscreen . maximized)))))
; Enables "electric pair mode" (automatically closes parentheses, quotes and brackets)
(electric-pair-mode 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment