diff options
author | John Turner <jturner.usa@gmail.com> | 2022-07-03 21:29:51 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2022-07-03 21:29:51 -0400 |
commit | e6b5e17a394cc8fdd827670b8fa1a81043c8a951 (patch) | |
tree | 30754c43c34a336053f893fa26ba8bf3b1876669 /custom.el | |
download | emacs.d-e6b5e17a394cc8fdd827670b8fa1a81043c8a951.tar.gz |
init
Diffstat (limited to 'custom.el')
-rw-r--r-- | custom.el | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/custom.el b/custom.el new file mode 100644 index 0000000..87ef0b4 --- /dev/null +++ b/custom.el @@ -0,0 +1,22 @@ +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(safe-local-variable-values + '((rust-rustfmt-switches "--edition" "2021") + (projectile-package-compilation-cmd . "/home/notroot/bin/cargo-wrapper build") + (projectile-package-test-cmd . "/home/notroot/bin/cargo-wrapper test") + (projectile-package-compilation-cmd . "nonet cargo build") + (projectile-package-test-cmd . "nonet cargo test") + (projectile-package-cmd . "nonet cargo test") + (eval lsp) + (eval eglot-ensure))) + '(warning-suppress-types '((comp)))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(default ((t (:family "Noto Sans Mono" :foundry "GOOG" :slant normal :weight normal :height 98 :width normal)))) + '(flymake-error ((t (:underline nil))))) |