spellchecking and devicons

This commit is contained in:
TheSoeren 2024-09-24 22:21:33 +02:00
parent e28f39d75f
commit 5975e1b573
3 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1 @@
return { 'nvim-tree/nvim-web-devicons' }

View File

@ -1,5 +1,8 @@
return { -- Useful plugin to show you pending keybinds. return { -- Useful plugin to show you pending keybinds.
'folke/which-key.nvim', 'folke/which-key.nvim',
dependencies = {
'nvim-tree/nvim-web-devicons',
},
event = 'VimEnter', -- Sets the loading event to 'VimEnter' event = 'VimEnter', -- Sets the loading event to 'VimEnter'
opt = { opt = {
icons = { icons = {

View File

@ -78,3 +78,8 @@ vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor. -- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 10 vim.opt.scrolloff = 10
-- Spellchecker
vim.opt.spelllang = 'en'
vim.opt.spell = true
vim.opt.spellfile = os.getenv 'HOME' .. '/.config/nvim/spell/en.utf-8.add'