From 897f98a8926057e9c1df6b62ba78afb0b145746f Mon Sep 17 00:00:00 2001 From: FireIsGood Date: Thu, 1 Feb 2024 18:52:08 -0800 Subject: [PATCH 1/2] Fix punctuation --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 42ba5e4..f264abe 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # My dotfiles -This directory contains the dotfiles for my system +This directory contains the dotfiles for my system. ## Requirements -Ensure you have the following installed on your system +Ensure you have the following installed on your system: ### Git @@ -20,14 +20,14 @@ pacman -S stow ## Installation -First, check out the dotfiles repo in your $HOME directory using git +First, check out the dotfiles repo in your $HOME directory using git: ``` $ git clone git@github.com/dreamsofautonomy/dotfiles.git $ cd dotfiles ``` -then use GNU stow to create symlinks +Then, use GNU stow to create symlinks: ``` $ stow . From 8305aa8ede5f2b16c67c5b8f9f902cfde1ed3e75 Mon Sep 17 00:00:00 2001 From: FireIsGood Date: Thu, 1 Feb 2024 18:52:49 -0800 Subject: [PATCH 2/2] Add syntax highlighting to code blocks Adds `bash` to code blocks and removes inconsistent dollar signs --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f264abe..136f3c6 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,13 @@ Ensure you have the following installed on your system: ### Git -``` +```bash pacman -S git ``` ### Stow -``` +```bash pacman -S stow ``` @@ -22,13 +22,13 @@ pacman -S stow First, check out the dotfiles repo in your $HOME directory using git: -``` -$ git clone git@github.com/dreamsofautonomy/dotfiles.git -$ cd dotfiles +```bash +git clone git@github.com/dreamsofautonomy/dotfiles.git +cd dotfiles ``` Then, use GNU stow to create symlinks: -``` -$ stow . +```bash +stow . ```