refactor: clean up user example files to be easier to follow

This commit is contained in:
Micah Halter
2023-07-27 12:42:05 -04:00
parent b586a17c6b
commit e9875c83b6
15 changed files with 178 additions and 109 deletions

16
lua/plugins/init.lua Normal file
View File

@@ -0,0 +1,16 @@
if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
-- AstroCore allows you easy access to customize the default options provided in AstroNvim
return {
"AstroNvim/astrocore",
opts = {
-- modify core features of AstroNvim
features = {
max_file = { size = 1024 * 100, lines = 10000 }, -- set global limits for large files for disabling features like treesitter
autopairs = true, -- enable autopairs at start
cmp = true, -- enable completion at start
highlighturl = true, -- highlight URLs at start
notifications = true, -- enable notifications at start
},
},
}