spellchecking and devicons
This commit is contained in:
parent
e28f39d75f
commit
5975e1b573
|
|
@ -0,0 +1 @@
|
|||
return { 'nvim-tree/nvim-web-devicons' }
|
||||
|
|
@ -1,5 +1,8 @@
|
|||
return { -- Useful plugin to show you pending keybinds.
|
||||
'folke/which-key.nvim',
|
||||
dependencies = {
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
},
|
||||
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
|
||||
opt = {
|
||||
icons = {
|
||||
|
|
|
|||
|
|
@ -78,3 +78,8 @@ vim.opt.cursorline = true
|
|||
|
||||
-- Minimal number of screen lines to keep above and below the cursor.
|
||||
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'
|
||||
|
|
|
|||
Loading…
Reference in New Issue