Skip to content

Instantly share code, notes, and snippets.

@aerosayan
Created February 3, 2019 17:17
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 aerosayan/e00ab6413574fbd880218b6dca11367d to your computer and use it in GitHub Desktop.
Save aerosayan/e00ab6413574fbd880218b6dca11367d to your computer and use it in GitHub Desktop.
spacemacs user defined configuration
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 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