init.lua: minor edits of section comments for consistency
This commit is contained in:
		
							parent
							
								
									f23484cf88
								
							
						
					
					
						commit
						c8dd8e7e0c
					
				
							
								
								
									
										4
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										4
									
								
								init.lua
								
								
								
								
							| 
						 | 
					@ -37,13 +37,14 @@ I hope you enjoy your Neovim journey,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
P.S. You can delete this when you're done too. It's your config now :)
 | 
					P.S. You can delete this when you're done too. It's your config now :)
 | 
				
			||||||
--]]
 | 
					--]]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
-- Set <space> as the leader key
 | 
					-- Set <space> as the leader key
 | 
				
			||||||
-- See `:help mapleader`
 | 
					-- See `:help mapleader`
 | 
				
			||||||
--  NOTE: Must happen before plugins are required (otherwise wrong leader will be used)
 | 
					--  NOTE: Must happen before plugins are required (otherwise wrong leader will be used)
 | 
				
			||||||
vim.g.mapleader = ' '
 | 
					vim.g.mapleader = ' '
 | 
				
			||||||
vim.g.maplocalleader = ' '
 | 
					vim.g.maplocalleader = ' '
 | 
				
			||||||
 | 
					
 | 
				
			||||||
-- Install package manager
 | 
					-- [[ Install `lazy.nvim` plugin manager ]]
 | 
				
			||||||
--    https://github.com/folke/lazy.nvim
 | 
					--    https://github.com/folke/lazy.nvim
 | 
				
			||||||
--    `:help lazy.nvim.txt` for more info
 | 
					--    `:help lazy.nvim.txt` for more info
 | 
				
			||||||
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
 | 
					local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
 | 
				
			||||||
| 
						 | 
					@ -59,6 +60,7 @@ if not vim.loop.fs_stat(lazypath) then
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
vim.opt.rtp:prepend(lazypath)
 | 
					vim.opt.rtp:prepend(lazypath)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					-- [[ Configure plugins ]]
 | 
				
			||||||
-- NOTE: Here is where you install your plugins.
 | 
					-- NOTE: Here is where you install your plugins.
 | 
				
			||||||
--  You can configure plugins using the `config` key.
 | 
					--  You can configure plugins using the `config` key.
 | 
				
			||||||
--
 | 
					--
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue