summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamjan 9000 <damjan.9000@gmail.com>2023-11-07 11:27:14 +0100
committerDamjan 9000 <damjan.9000@gmail.com>2023-11-07 11:27:14 +0100
commitbe80c3059241a3fdd31413786d4083b79c4edc8f (patch)
tree1c65e140ac53da48d7e83acf3d285d2e7fc919a5
parent5791b343b61cc9d2c5979b45db1eadfc0925ff06 (diff)
downloaddots-be80c3059241a3fdd31413786d4083b79c4edc8f.tar.gz
init.lua: minor edits of section comments for consistency
-rw-r--r--nvim/init.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua
index 225ad21..748e7f8 100644
--- a/nvim/init.lua
+++ b/nvim/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 :)
--]]
+
-- Set <space> as the leader key
-- See `:help mapleader`
-- NOTE: Must happen before plugins are required (otherwise wrong leader will be used)
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
--- Install package manager
+-- [[ Install `lazy.nvim` plugin manager ]]
-- https://github.com/folke/lazy.nvim
-- `:help lazy.nvim.txt` for more info
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
@@ -59,6 +60,7 @@ if not vim.loop.fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)
+-- [[ Configure plugins ]]
-- NOTE: Here is where you install your plugins.
-- You can configure plugins using the `config` key.
--