From 37d62823fdf229808f1b822b61ec6f0af9300d1f Mon Sep 17 00:00:00 2001 From: Damjan 9000 Date: Tue, 7 Nov 2023 17:26:53 +0100 Subject: [PATCH] init.lua: update section comments to match upstream --- init.lua | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/init.lua b/init.lua index eb373d2..6b9ebf5 100644 --- a/init.lua +++ b/init.lua @@ -44,28 +44,32 @@ P.S. You can delete this when you're done too. It's your config now :) vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' --- Install lazy plugin manager +-- [[ Install `lazy.nvim` plugin manager ]] require('lazy-bootstrap') --- Setup lazy plugin manager - configure plugins +-- [[ Configure plugins ]] require('lazy-plugins') --- Set options +-- [[ Setting options ]] require('options') --- Configure keymaps +-- [[ Basic Keymaps ]] require('keymaps') --- Configure Telescope (fuzzy finder) +-- [[ Configure Telescope ]] +-- (fuzzy finder) require('telescope-setup') --- Configure Treesitter (syntax parser for highlighting) +-- [[ Configure Treesitter ]] +-- (syntax parser for highlighting) require('treesitter-setup') --- Configure LSP (Language Server Protocol) +-- [[ Configure LSP ]] +-- (Language Server Protocol) require('lsp-setup') --- Configure CMP (completion) +-- [[ Configure nvim-cmp ]] +-- (completion) require('cmp-setup') -- The line beneath this is called `modeline`. See `:help modeline`