Skip to content

Commit c8dd8e7

Browse files
committed
init.lua: minor edits of section comments for consistency
1 parent f23484c commit c8dd8e7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

init.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,14 @@ I hope you enjoy your Neovim journey,
3737
3838
P.S. You can delete this when you're done too. It's your config now :)
3939
--]]
40+
4041
-- Set <space> as the leader key
4142
-- See `:help mapleader`
4243
-- NOTE: Must happen before plugins are required (otherwise wrong leader will be used)
4344
vim.g.mapleader = ' '
4445
vim.g.maplocalleader = ' '
4546

46-
-- Install package manager
47+
-- [[ Install `lazy.nvim` plugin manager ]]
4748
-- https://github.com/folke/lazy.nvim
4849
-- `:help lazy.nvim.txt` for more info
4950
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
@@ -59,6 +60,7 @@ if not vim.loop.fs_stat(lazypath) then
5960
end
6061
vim.opt.rtp:prepend(lazypath)
6162

63+
-- [[ Configure plugins ]]
6264
-- NOTE: Here is where you install your plugins.
6365
-- You can configure plugins using the `config` key.
6466
--

0 commit comments

Comments
 (0)