some global bindings

This commit is contained in:
Stefan Schwarz 2019-08-05 11:59:30 +02:00
parent 370f398384
commit 35a63c7c2a

View file

@ -21,6 +21,10 @@
(setq default-fill-column 80) ; toggle wrapping text at the 80th character
(setq initial-scratch-message "Welcome in Emacs") ; print a default message in the empty scratch buffer opened at startup
;; global keybindings
(global-set-key (kbd "C-k") 'previous-line)
(global-set-key (kbd "C-j") 'next-line)
;; package manager
(require 'package)
(setq package-enable-at-startup nil) ; tells emacs not to load any packages before starting up