Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Syntax errors fixed |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8898670d94a0beddf2e41cc5f745ebe7 |
User & Date: | Cthulhux 2020-05-26 18:33:53 |
Context
2020-05-31
| ||
17:25 | Emacs: Moved to org-mode from Git; explicitly fetching vc-fossil check-in: e010fe2600 user: Cthulhux tags: trunk | |
2020-05-26
| ||
18:33 | Syntax errors fixed check-in: 8898670d94 user: Cthulhux tags: trunk | |
07:48 | Emacs: more :config, less :init check-in: 46d12dc2a9 user: Cthulhux tags: trunk | |
Changes
Changes to emacs/init.el.
︙ | ︙ | |||
139 140 141 142 143 144 145 | ;; Some platforms (cough) don't update Emacs's path. ;; Make them. (use-package exec-path-from-shell :if (eq system-type 'darwin) :ensure t :config (setq exec-path-from-shell-check-startup-files nil) | | | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | ;; Some platforms (cough) don't update Emacs's path. ;; Make them. (use-package exec-path-from-shell :if (eq system-type 'darwin) :ensure t :config (setq exec-path-from-shell-check-startup-files nil) (exec-path-from-shell-initialize)) ;; Multiple cursors: (use-package multiple-cursors :ensure t :config (global-set-key (kbd "C-S-c C-S-c") 'mc/edit-lines)) |
︙ | ︙ | |||
222 223 224 225 226 227 228 | (setq markdown-command "multimarkdown")) ;; Use ripgrep instead of grep (if applicable): (use-package rg :if (executable-find "rg") :ensure t :config | | | 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | (setq markdown-command "multimarkdown")) ;; Use ripgrep instead of grep (if applicable): (use-package rg :if (executable-find "rg") :ensure t :config (rg-enable-default-bindings)) ;; Project-related functionalities: (use-package projectile :ensure t :config (projectile-mode +1) (define-key projectile-mode-map (kbd "s-p") 'projectile-command-map) |
︙ | ︙ |