some global bindings
This commit is contained in:
parent
370f398384
commit
35a63c7c2a
1 changed files with 4 additions and 0 deletions
4
init.el
4
init.el
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue