Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 947 Bytes

README.org

File metadata and controls

38 lines (24 loc) · 947 Bytes

Dotfiles

Overview

My configuration files for Emacs, Vim, Alacritty and Fish and LaTeX & more.

The texmf directory holds the templates that I commonly use for LaTeX files. I rely on engrave-faces to syntax-highlight code blocks. This is unique to Emacs & Org mode.

Setup/Installation

Installing

Use yadm to manage dotfiles.

If on a remote server, to place yadm in ~/bin:

curl -fLo ~/bin/yadm https://github.com/TheLocehiliosan/yadm/raw/master/yadm && chmod +x ~/bin/yadm

After installing yadm, setting up is as simple as:

yadm clone https://github.com/hydrobeam/dotfiles.git

That’s it!

Adding new files

yadm is basically just a git repository, so to add files to be tracked:

yadm add /path/to/file/cool.rs
yadm commit -m "Added cool.rs"
yadm push