1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-13 04:51:15 +02:00

nvim: added plugin for better spelling

This commit is contained in:
2023-08-14 02:42:17 +02:00
parent c24d7183f7
commit 51861bf318
2 changed files with 11 additions and 6 deletions

View File

@@ -553,6 +553,15 @@ return require("lazy").setup({
'stevearc/oil.nvim',
dependencies = { "nvim-tree/nvim-web-devicons" },
opts = {},
},
-- improve spelling check for coding to feature camelcase, etc
{
'kamykn/spelunker.vim',
dependencies = { 'kamykn/popup-menu.nvim' },
config = function ()
vim.o.nospell = true
end
}
},