Created
November 24, 2019 06:37
-
-
Save suvratapte/954093165060e2ebe17eb9e1ee9c5202 to your computer and use it in GitHub Desktop.
Basic init.el
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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