This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local S = {} | |
-- define the files for each language | |
-- new words will be added to the last file in the language table | |
S.dictionaries = { | |
["en-US"] = { vim.fn.stdpath("config") .. "/spell/en.txt" }, | |
} | |
-- function to avoid interacting with the table directly | |
function S.getDictFiles(lang) |