home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

config-keybindings.el (457B)


      1 ;;; config-keybindings.el --- -*- lexical-binding: t -*-
      2 ;;; Commentary:
      3 ;;; Key binding specific configuration
      4 ;;; Code:
      5 
      6 ;; Disable C-x C-n to avoid the disabled command buffer
      7 (unbind-key "C-x C-n" global-map)
      8 
      9 ;; Remap dynamic-abbrev to hippie-expand
     10 ;; See https://www.masteringemacs.org/article/text-expansion-hippie-expand
     11 (global-set-key [remap dabbrev-expand] 'hippie-expand)
     12 
     13 
     14 ;; 
     15 (provide 'config-keybindings)
     16 ;;; config-keybindings.el ends here