diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2023-11-07 17:26:53 +0100 |
---|---|---|
committer | Damjan 9000 <damjan.9000@gmail.com> | 2023-11-07 17:26:53 +0100 |
commit | 37d62823fdf229808f1b822b61ec6f0af9300d1f (patch) | |
tree | 719a75dbc8f771fe7af6523d4c197f8666676bd8 /init.lua | |
parent | 8801505f962fbc2406d66fc0ea282ba585c3cb66 (diff) |
init.lua: update section comments to match upstream
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 20 |
1 files changed, 12 insertions, 8 deletions
@@ -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` |