paper-terminal 0.2.0

Writes a file to a paper in your terminal. Especially if that file is Markdown.
use directories::ProjectDirs;
use std::path::PathBuf;

fn syncat_directories() -> ProjectDirs {
    ProjectDirs::from("com", "cameldridge", "syncat").unwrap()
}

pub fn syncat_config() -> PathBuf {
    syncat_directories().config_dir().to_owned()
}