We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e28f39d commit 5975e1bCopy full SHA for 5975e1b
lua/custom/plugins/web-devicons.lua
@@ -0,0 +1 @@
1
+return { 'nvim-tree/nvim-web-devicons' }
lua/custom/plugins/which-key.lua
@@ -1,5 +1,8 @@
return { -- Useful plugin to show you pending keybinds.
2
'folke/which-key.nvim',
3
+ dependencies = {
4
+ 'nvim-tree/nvim-web-devicons',
5
+ },
6
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
7
opt = {
8
icons = {
lua/set.lua
@@ -78,3 +78,8 @@ vim.opt.cursorline = true
78
79
-- Minimal number of screen lines to keep above and below the cursor.
80
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