From c0a03f803b71c38a25ccfbfb486d3cd7022a439c Mon Sep 17 00:00:00 2001 From: Bruno Carlin Date: Tue, 11 Feb 2025 15:23:05 +0100 Subject: [PATCH] feat(nvim): automatically set spell for mail --- nvim/.config/nvim/lua/settings/types.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/.config/nvim/lua/settings/types.lua b/nvim/.config/nvim/lua/settings/types.lua index 66adb6d..d27662c 100644 --- a/nvim/.config/nvim/lua/settings/types.lua +++ b/nvim/.config/nvim/lua/settings/types.lua @@ -14,4 +14,5 @@ vim.cmd [[ autocmd FileType vimwiki setlocal tw=80 ts=2 sts=2 sw=2 expandtab autocmd FileType xml setlocal ts=2 sts=2 sw=2 expandtab autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab + autocmd FileType mail set spell spelllang=fr ]]