Skip to content

Instantly share code, notes, and snippets.

@crankyadmin
Created October 18, 2015 06:50
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 crankyadmin/cd43a78ec40ee2c7229d to your computer and use it in GitHub Desktop.
Save crankyadmin/cd43a78ec40ee2c7229d to your computer and use it in GitHub Desktop.
Add line numbers in programming mode and make the pound sign work on a UK Mac keyboard
;; Show line nymbers in programming mode
(add-hook 'prog-mode-hook 'linum-mode)
;; Allow pound sign to be entered, if you're in the UK and on a Mac you
;; probably want to uncomment the below
;; (global-set-key (kbd "M-3") '(lambda () (interactive) (insert "#")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment