SpaceEmacs Rock Day3 学习笔记
Table of Contents
1 Spaceemacs Emacs Day3
1.1 auto move the help window(popwin)
(require 'popwin) (popwin-mode t)
1.2 Split your configuration into multiple files
(abbrev-mode)
(define-abbrev-table 'global-abbrev-table '(
;; signature
("8dk" "devinkin")
;; emacs regex
))
- how to origanie your configs
- init-package.el
- init-ui.el
- init-better-default.el
- init-keybindings.el
- custom.el
(setq custom-file (expand-file-name "lisp/custom.el" user-emacs-directory))
- use `conunsel-git` to find file in git managed project.
(global-set-key (kbd "C-c p f") 'counsel-git)
1.3 Major mode and minjor in details
- Major mode
- text-mode:edit text files
- special-mode:edit special files
- prog-mode:edit programming files
- mode key map and mode key
Date: 2018-10-23 16:50
Created: 2018-10-23 二 16:50