git.fiddlerwoaroof.com
Browse code

enable narrow-to-region, replace buffer with ibuffer

Ed Langley authored on 20/05/2018 06:21:16
Showing 1 changed files
... ...
@@ -360,8 +360,11 @@
360 360
 (modify-syntax-entry ?- "w" emacs-lisp-mode-syntax-table)
361 361
 (modify-syntax-entry ?_ "w" emacs-lisp-mode-syntax-table)
362 362
 
363
+
363 364
 ;;)
364 365
 
366
+(global-set-key (kbd "s-v") 'yank)
367
+
365 368
 (setq custom-file "~/.emacs.d/custom.el")
366 369
 (load-file custom-file)
367 370
 
... ...
@@ -404,4 +407,9 @@
404 407
 ;;   (setq org-brain-visualize-default-choices 'all)
405 408
 ;;   (setq org-brain-title-max-length 12))
406 409
 
407
-(put 'narrow-to-region 'disabled nil)
410
+(put 'narrow-to-region
411
+     'disabled
412
+     nil)
413
+
414
+(global-set-key (kbd "C-x C-b")
415
+                'ibuffer)