File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,14 @@ I hope you enjoy your Neovim journey,
3737
3838P.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)
4344vim .g .mapleader = ' '
4445vim .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
4950local lazypath = vim .fn .stdpath ' data' .. ' /lazy/lazy.nvim'
@@ -59,6 +60,7 @@ if not vim.loop.fs_stat(lazypath) then
5960end
6061vim .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--
You can’t perform that action at this time.
0 commit comments