diff --git a/README.md b/README.md
index 6de6352..ee901a0 100644
--- a/README.md
+++ b/README.md
@@ -88,6 +88,9 @@ Here's some things you might want to check out:
   - [Starship](https://starship.rs/) — shell prompt
 - [Ranger](https://github.com/ranger/ranger) — file manager
 - [GPG](https://gnupg.org/) + [pass](https://www.passwordstore.org/)
+- Self management:
+  - [Smos](https://github.com/NorfairKing/smos) — A comprehensive self-management System.
+  - [Intray](https://github.com/NorfairKing/intray) — GTD capture tool.
 
 ### Services
 
@@ -95,15 +98,17 @@ Here's some things you might want to check out:
 
 ## Hall of fame
 
-Includes links to stuff which used to be in the previous section but is not used anymore. Only created this section in June 2023, so stuff I used earlier might not be here.
+Includes links to stuff which used to be in the previous section but is not used anymore. Only created this section in June 2023, so stuff I used earlier might not be here. Sorted with the most recently dropped things at the top.
 
-- [Wofi](https://sr.ht/~scoopta/wofi/) — program launcher
+- [Mind.nvim](https://github.com/phaazon/mind.nvim) — self management tree editor. The project got archived, so I switched to [Smos](https://github.com/NorfairKing/smos).
+- [Null-ls](https://github.com/jose-elias-alvarez/null-ls.nvim) — general purpose neovim LSP. The project got archived, so I switched to [formatter.nvim](https://github.com/mhartington/formatter.nvim).
+- [Wofi](https://sr.ht/~scoopta/wofi/) — program launcher. I switched to [Anyrun](https://github.com/Kirottu/anyrun).
 - [Alacritty](https://github.com/alacritty/alacritty) — terminal emulator
-- [Xmonad](https://xmonad.org/) — xorg window manager
+- [Xmonad](https://xmonad.org/) — xorg window manager. I switched to [Hyprland](https://hyprland.org/).
   - [Polybar](https://github.com/polybar/polybar) — desktop bar
-  - [Rofi](https://github.com/davatorium/rofi) — program launcher
-  - [Spectacle](https://apps.kde.org/spectacle/) — screenshot tool
-- [Chrome](https://www.google.com/chrome/) — web browser
+  - [Rofi](https://github.com/davatorium/rofi) — program launcher. I switched to [Wofi](https://sr.ht/~scoopta/wofi/).
+  - [Spectacle](https://apps.kde.org/spectacle/) — screenshot tool. I switched to [Grimblast](https://github.com/hyprwm/contrib/tree/main/grimblast).
+- [Chrome](https://www.google.com/chrome/) — web browser. I switched to `firefox` because it offers a better HM module.
 
 ## Future
 
diff --git a/dotfiles/neovim/ftplugin/tex.lua b/dotfiles/neovim/ftplugin/tex.lua
index 53be39b..d173866 100644
--- a/dotfiles/neovim/ftplugin/tex.lua
+++ b/dotfiles/neovim/ftplugin/tex.lua
@@ -137,7 +137,10 @@ local abolishAbbreviations = {
 
   -- Linear systems
   -- Note: we must add the space inside the {} in order for capitalization to work!
-  { "{{s,o,l},}deq{s,}", "{{scalar,ordinary,linear} ,}differential equation{}" },
+  {
+    "{{s,o,l},}deq{s,}",
+    "{{scalar,ordinary,linear} ,}differential equation{}",
+  },
 
   -- Graph theory function syntax:
   --   gt[function]{graph}{modifier}
@@ -225,7 +228,6 @@ local abolishAbbreviations = {
   },
 }
 
-
 local expanded = scrap.expand_many(abolishAbbreviations)
 
 -- Last I checked this contained 1166 abbreviations
diff --git a/dotfiles/neovim/lua/my/plugins/format-nvim.lua b/dotfiles/neovim/lua/my/plugins/format-nvim.lua
index 4d16493..0f1b6b5 100644
--- a/dotfiles/neovim/lua/my/plugins/format-nvim.lua
+++ b/dotfiles/neovim/lua/my/plugins/format-nvim.lua
@@ -11,7 +11,7 @@ function M.config()
   local any = require("formatter.filetypes.any")
   local formatters = {
     markdown = {
-      require("formatter.filetypes.markdown").prettierd,
+      require("formatter.filetypes.markdown").prettier,
     },
     lua = {
       require("formatter.filetypes.lua").stylua,
diff --git a/dotfiles/neovim/lua/my/plugins/mind.lua b/dotfiles/neovim/lua/my/plugins/mind.lua
deleted file mode 100644
index 8c4ff70..0000000
--- a/dotfiles/neovim/lua/my/plugins/mind.lua
+++ /dev/null
@@ -1,29 +0,0 @@
-local M = {
-  "phaazon/mind.nvim", -- Organize shit as trees
-  cmd = "MindOpenMain",
-}
-
-function M.init()
-  vim.keymap.set(
-    "n",
-    "<leader>m",
-    "<cmd>MindOpenMain<cr>",
-    { desc = "[M]ind panel" }
-  )
-end
-
-function M.config()
-  local mind = require("mind")
-
-  mind.setup({
-    persistence = {
-      state_path = "~/Projects/Mind/mind.json",
-      data_dir = "~/Mind/data",
-    },
-    ui = {
-      width = 50,
-    },
-  })
-end
-
-return M