Skip to content

Commit 35ad751

Browse files
committed
init.lua: update section comments to match upstream
1 parent 6843628 commit 35ad751

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

init.lua

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,28 +44,32 @@ P.S. You can delete this when you're done too. It's your config now :)
4444
vim.g.mapleader = ' '
4545
vim.g.maplocalleader = ' '
4646

47-
-- Install lazy plugin manager
47+
-- [[ Install `lazy.nvim` plugin manager ]]
4848
require('lazy-bootstrap')
4949

50-
-- Setup lazy plugin manager - configure plugins
50+
-- [[ Configure plugins ]]
5151
require('lazy-plugins')
5252

53-
-- Set options
53+
-- [[ Setting options ]]
5454
require('options')
5555

56-
-- Configure keymaps
56+
-- [[ Basic Keymaps ]]
5757
require('keymaps')
5858

59-
-- Configure Telescope (fuzzy finder)
59+
-- [[ Configure Telescope ]]
60+
-- (fuzzy finder)
6061
require('telescope-setup')
6162

62-
-- Configure Treesitter (syntax parser for highlighting)
63+
-- [[ Configure Treesitter ]]
64+
-- (syntax parser for highlighting)
6365
require('treesitter-setup')
6466

65-
-- Configure LSP (Language Server Protocol)
67+
-- [[ Configure LSP ]]
68+
-- (Language Server Protocol)
6669
require('lsp-setup')
6770

68-
-- Configure CMP (completion)
71+
-- [[ Configure nvim-cmp ]]
72+
-- (completion)
6973
require('cmp-setup')
7074

7175
-- The line beneath this is called `modeline`. See `:help modeline`

0 commit comments

Comments
 (0)