nvim-lua / kickstart.nvim

A launch point for your personal nvim configuration
MIT License
16.93k stars 17.04k forks source link

feat: Add spell checker ? #878

Closed afifurrohman-id closed 2 months ago

afifurrohman-id commented 2 months ago

Probably needed for starting?

vim.opt.spell = true
vim.opt.spelllang = 'en_us'
dam9000 commented 2 months ago

Well, enabling it by default and setting the language is probably a user customization. However, I can propose a keymap to toggle the spell checking, here is a PR: https://github.com/nvim-lua/kickstart.nvim/pull/879

afifurrohman-id commented 2 months ago

Well, enabling it by default and setting the language is probably a user customization. However, I can propose a keymap to toggle the spell checking, here is a PR: #879

Hmm alright, but i think add example within commenting may is worth?

feoh commented 2 months ago

Hi.

The universe of potential extensions to Neovim is VAST.

Kickstart doesn't try to be all things to all people.

Spell checking is a feature with MANY contexts. I personally enable it via filetype plugins for Markdown and Text, and that's all.

The feature is extremely well documented in the standard Neovim docs here.

All I had to do was do a web search on "Neovim spelling" to find it.

Thanks for your contribution, but I don't think this is a good fit for kickstart at this time.