Skip to content

Instantly share code, notes, and snippets.

@zackmdavis
Created February 10, 2014 06:18
Show Gist options
  • Save zackmdavis/8911197 to your computer and use it in GitHub Desktop.
Save zackmdavis/8911197 to your computer and use it in GitHub Desktop.
very basic .emacs
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(cua-mode t nil (cua-base))
'(inhibit-startup-screen t)
'(make-backup-files nil))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(global-set-key [M-left] 'windmove-left) ; move to left windnow
(global-set-key [M-right] 'windmove-right) ; move to right window
(global-set-key [M-up] 'windmove-up) ; move to upper window
(global-set-key [M-down] 'windmove-down) ; move to downer window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment