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.
|
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 = {
|
||||||
|
|
|
||||||
|
|
@ -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'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue