Skip to content

Instantly share code, notes, and snippets.

@suvratapte
Created November 24, 2019 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suvratapte/954093165060e2ebe17eb9e1ee9c5202 to your computer and use it in GitHub Desktop.
Save suvratapte/954093165060e2ebe17eb9e1ee9c5202 to your computer and use it in GitHub Desktop.
Basic init.el
;; Do not show the startup screen.
(setq inhibit-startup-message t)
;; Disable tool bar, menu bar, scroll bar.
(tool-bar-mode -1)
(menu-bar-mode -1)
(scroll-bar-mode -1)
;; Highlight current line.
(global-hl-line-mode t)
;; Use `command` as `meta` in macOS.
(setq mac-command-modifier 'meta)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment