Notes about math, research, and more.

Software

Emacs

yes | sudo dnf install emacs

EAF

git clone --depth=1 -b master https://github.com/emacs-eaf/emacs-application-framework.git ~/.emacs.d/site-lisp/emacs-application-framework/
cd ~/.emacs.d/site-lisp/emacs-application-framework/
chmod +x ./install-eaf.py
./install-eaf.py

Latex

Install LaTex full

yes | sudo dnf install texlive-scheme-full  

Vivaldi

login: <lastname> pw: <dogshitsex> Have to download then run sudo dnf install liberation-fonts sudo rpm -i vivaldi-stable-7.0.3495.29-1.x8664.rpm

Bitwarden

un: first.last@umconnect

Eza

yes | sudo dnf install eza

Shell

Starship

edit ~/.config/starship.toml to mess with shell for starship

Git projects

First, follow bitbucket instructions to get ssh to work

cd ~/
mkdir git-projects
git clone git@bitbucket.org:patrickkreitzberg/patrickkreitzberg-website.git
git config --global user.email "pk115166@umconnect.umt.edu"

Config git

git config 

Emacs

init.el contains the following lines which will automatically download the packages in the package-list array

; list the packages you want
(setq package-list
    '(yasnippet org org-roam ido-completing-read+ org-transclusion))

; activate all the packages
(package-initialize)

; fetch the list of packages available 
(unless package-archive-contents
  (package-refresh-contents))

; install the missing packages
(dolist (package package-list)
  (unless (package-installed-p package)
    (package-install package)))

(message "Completed")