diff --git a/modules/programs/nvim/options.lua b/modules/programs/nvim/options.lua index 4ebf278..8fa8a70 100644 --- a/modules/programs/nvim/options.lua +++ b/modules/programs/nvim/options.lua @@ -2,7 +2,7 @@ vim.g.mapleader = " " vim.g.maplocalleader = "," -- FIX to create spell dir if not existent -local spelldir = vim.fn.stdpath("data") .. "/site/spell" +local spelldir = vim.fn.stdpath("config") .. "/spell" if not vim.loop.fs_stat(spelldir) then vim.fn.mkdir(spelldir, "p") end