Skip to content

Commit 5975e1b

Browse files
committed
spellchecking and devicons
1 parent e28f39d commit 5975e1b

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
return { 'nvim-tree/nvim-web-devicons' }

lua/custom/plugins/which-key.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
return { -- Useful plugin to show you pending keybinds.
22
'folke/which-key.nvim',
3+
dependencies = {
4+
'nvim-tree/nvim-web-devicons',
5+
},
36
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
47
opt = {
58
icons = {

lua/set.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,8 @@ vim.opt.cursorline = true
7878

7979
-- Minimal number of screen lines to keep above and below the cursor.
8080
vim.opt.scrolloff = 10
81+
82+
-- Spellchecker
83+
vim.opt.spelllang = 'en'
84+
vim.opt.spell = true
85+
vim.opt.spellfile = os.getenv 'HOME' .. '/.config/nvim/spell/en.utf-8.add'

0 commit comments

Comments
 (0)