The setup.fdf file tells fdf what to do with your dotfiles. It should be in the root of your dotfiles repository.
Each line is a command. Comments start with #.
Copy a file from your repo to a destination:
PUT .bashrc IN ~/.bashrc PUT config/nvim IN ~/.config/nvim
Execute a shell command:
RUN chmod +x ~/.local/bin/myscript
Marks the end of the config (required):
END FETCH
# my dotfiles setup PUT .bashrc IN ~/.bashrc PUT .zshrc IN ~/.zshrc PUT .vimrc IN ~/.vimrc PUT .config/nvim IN ~/.config/nvim RUN source ~/.bashrc END FETCH
~ for home directory~/.fdf_backup/