From 64b3299b82b2e84c447601d8af343a382e4563ae Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.dev>
Date: Thu, 21 Nov 2024 13:22:17 +0000
Subject: [PATCH] Update spellfile path

---
 nix/modules/home-manager/zsh/aliases.nix | 2 +-
 nvim/lua/opdavies/options.lua            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/nix/modules/home-manager/zsh/aliases.nix b/nix/modules/home-manager/zsh/aliases.nix
index 8a19f590..46a0e3af 100644
--- a/nix/modules/home-manager/zsh/aliases.nix
+++ b/nix/modules/home-manager/zsh/aliases.nix
@@ -9,6 +9,6 @@
   s = "secrets";
   secrets = ''doppler --project "$(whoami)" run'';
   tag = "tag-release";
-  vss = "LC_ALL=C sort --unique $REPOS/dotfiles.nix/config/neovim/spell/en.utf-8.add --output $REPOS/dotfiles.nix/config/neovim/spell/en.utf-8.add";
+  vss = "LC_ALL=C sort --unique $REPOS/dotfiles/nvim/spell/en.utf-8.add --output $REPOS/dotfiles.nix/config/neovim/spell/en.utf-8.add";
   wt = "git worktree";
 }
diff --git a/nvim/lua/opdavies/options.lua b/nvim/lua/opdavies/options.lua
index 751020d2..0c5d1d1c 100644
--- a/nvim/lua/opdavies/options.lua
+++ b/nvim/lua/opdavies/options.lua
@@ -27,7 +27,7 @@ local settings = {
   signcolumn = "yes:1",
   smartindent = true,
   softtabstop = 2,
-  spellfile = "/home/opdavies/Code/dotfiles.nix/config/neovim/spell/en.utf-8.add",
+  spellfile = "/home/opdavies/Code/dotfiles/nvim/spell/en.utf-8.add",
   splitbelow = true,
   splitright = true,
   swapfile = false,