Last active
November 3, 2021 09:22
-
-
Save choan/91870e8e7faaf9821c0f136b3720aed6 to your computer and use it in GitHub Desktop.
Mi ficherito ~/.myemacs (in progress)
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
;; show current line number | |
(setq line-number-mode t) | |
;; show current column number | |
(setq column-number-mode t) | |
;; enable auto pairing of parens, bracketts, etc | |
(add-hook 'prog-mode-hook #'electric-pair-mode) | |
;; enable line numbering | |
(add-hook 'prog-mode-hook #'display-line-numbers-mode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment