Created
February 3, 2019 17:17
-
-
Save aerosayan/e00ab6413574fbd880218b6dca11367d to your computer and use it in GitHub Desktop.
spacemacs user defined configuration
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; USER DEFINED CONFIGURATION ;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Display line numbers globally | |
(global-display-line-numbers-mode) | |
;; Use soft wrap | |
(global-visual-line-mode t) | |
;; Disable the horrible auto-indent "feature" | |
(add-hook 'after-change-major-mode-hook' | |
(lambda()(electric-indent-mode -1))) | |
;; Map CTRL-x to F8 | |
(global-set-key (kbd "<f8>") ctl-x-map) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment