gdritter repos dotfiles / 778d2b7
pull in a bit more emacs config Getty Ritter 11 days ago
1 changed file(s) with 7 addition(s) and 0 deletion(s). Collapse all Expand all
1818
1919 ;; miscellaneous global config
2020 (setq vc-follow-symlinks t)
21 (setq vc-handled-backends nil)
2122 (setq require-final-newline t)
2223
2324 ;; change backups to be less inline
240241
241242 (setq ruby-deep-indent-param nil)
242243 (setq ruby-insert-encoding-magic-comment nil)
244
245
243246
247 ;; for Go
248 (use-package go-mode :ensure t)
249 (setq gofmt-command "goimports")
250 (add-hook 'before-save-hook 'gofmt-before-save)
244251
245252