diff --git a/config.yaml b/config.yaml index bad39751..a7ff3c0d 100644 --- a/config.yaml +++ b/config.yaml @@ -34,8 +34,8 @@ params: title404: This page no longer exists, or maybe it never did? Try https://archive.org? assets: favicon: favicon.ico - # customCSS: - # - css/custom.css + customCSS: + - css/custom.css # customJS: # - js/custom.js gopher: '' diff --git a/content/post/why-i-threw-out-my-dotfiles.md b/content/post/why-i-threw-out-my-dotfiles.md index 7344d23f..d4db86e2 100644 --- a/content/post/why-i-threw-out-my-dotfiles.md +++ b/content/post/why-i-threw-out-my-dotfiles.md @@ -102,14 +102,14 @@ Now, to start off with a basic configuration, open up `~/.config/nixpkgs/home.ni git = { enable = true; aliases = { - "aa" = "add -A ."; - "br" = "branch"; - "c" = "commit -S"; - "ca" = "commit -S --amend"; - "cb" = "checkout -b"; - "co" = "checkout"; - "d" = "diff"; - "l" = + aa = "add -A ."; + br = "branch"; + c = "commit -S"; + ca = "commit -S --amend"; + cb = "checkout -b"; + co = "checkout"; + d = "diff"; + l = "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"; }; diff --git a/static/css/custom.css b/static/css/custom.css new file mode 100644 index 00000000..086eb712 --- /dev/null +++ b/static/css/custom.css @@ -0,0 +1,3 @@ +.container{ + max-width: 900px +}