docs: Add more documentation (#1174)

This commit is contained in:
Tom MacWright 2023-07-20 17:16:13 -04:00 committed by GitHub
parent abaa6d90e4
commit 6323b419fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,8 @@
local load_textobjects = false local load_textobjects = false
return { return {
-- Treesitter is a new parser generator tool that we can
-- use in Neovim to power faster and more accurate
-- syntax highlighting.
{ {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
version = false, -- last release is way too old and doesn't work on Windows version = false, -- last release is way too old and doesn't work on Windows

View file

@ -272,7 +272,8 @@ return {
}, },
}, },
-- dashboard -- Dashboard. This runs when neovim starts, and is what displays
-- the "LAZYVIM" banner.
{ {
"goolord/alpha-nvim", "goolord/alpha-nvim",
event = "VimEnter", event = "VimEnter",

View file

@ -9,7 +9,9 @@ return {
end, end,
}, },
-- session management -- Session management. This saves your session in the background,
-- keeping track of open buffers, window arrangement, and more.
-- You can restore sessions when returning through the dashboard.
{ {
"folke/persistence.nvim", "folke/persistence.nvim",
event = "BufReadPre", event = "BufReadPre",