From 2e5f676608d3a54c7724a8d5abca3b2b7237eced Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 20 Jul 2024 12:31:07 +0100 Subject: [PATCH] Enable spell checking within rst files --- after/ftplugin/rst.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/after/ftplugin/rst.lua b/after/ftplugin/rst.lua index 01cd1fe..7aa8eee 100644 --- a/after/ftplugin/rst.lua +++ b/after/ftplugin/rst.lua @@ -1,5 +1,6 @@ local opt = vim.opt_local +opt.spell = true opt.wrap = true local cmp = require "cmp"