pull in a bit more emacs config
Getty Ritter
11 days ago
| 18 | 18 | |
| 19 | 19 | ;; miscellaneous global config |
| 20 | 20 | (setq vc-follow-symlinks t) |
| 21 | (setq vc-handled-backends nil) | |
| 21 | 22 | (setq require-final-newline t) |
| 22 | 23 | |
| 23 | 24 | ;; change backups to be less inline |
| 240 | 241 | |
| 241 | 242 | (setq ruby-deep-indent-param nil) |
| 242 | 243 | (setq ruby-insert-encoding-magic-comment nil) |
| 244 | ||
| 245 | ||
| 243 | 246 | |
| 247 | ;; for Go | |
| 248 | (use-package go-mode :ensure t) | |
| 249 | (setq gofmt-command "goimports") | |
| 250 | (add-hook 'before-save-hook 'gofmt-before-save) | |
| 244 | 251 | |
| 245 | 252 | |