I'm trying to tidy up my init.el file which is currently an absolute mess. I've looked at other people's files online so as to get some inspiration but none of these examples feature this particular block:
(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.
'(ispell-dictionary nil)
'(package-selected-packages
'(sonic-pi browse-kill-ring sclang-extensions async magit avy csv-mode company ein conda perspective buffer-move pdf-tools which-key helpful use-package sudo-edit))
'(send-mail-function 'mailclient-send-it))
(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.
)
So I've no idea where to start from as a result of this and there isn't much info on the web. I was interested in re organizing my file with use-package as it seems like quite a tidy way of doing it but I've no idea as to where this bit of code should go??