Update .config/nvim/init.lua

Update .config/nvim/lua/plugin/00_colorscheme.lua
This commit is contained in:
Lewis Wynne 2025-11-12 02:38:35 +00:00
parent 38c5611afa
commit f0cd5ad666
2 changed files with 8 additions and 2 deletions

View file

@ -3,12 +3,14 @@
-- Configuration Structure:
-- ├ init.lua -- Bootstraps config (you are here)
-- ├ lua/
-- │ ├ colors/ -- colorscheme definitions
-- │ │ ├ colibri.lua -- the Helix theme
-- │ ├ config/ -- Startup configuration files
-- │ │ ├ 00_lazy.lua -- Bootstraps lazy.nvim
-- │ │ ├ 10_opts.lua -- Built-in Neovim options
-- │ │ ├ 20_keymaps.lua -- Custom keymaps
-- │ │ ├ 30_autocmds.lua -- Custom autocommands
-- │ │ └ 40_statusline.lua -- Minimal statusline, showing win num
-- │ │ └ 40_statusline.lua -- Minimal statusline
-- │ └ plugin/ -- Plugin configurations for lazy.nvim
-- │ ├ 00_colorscheme.lua -- Sets colorscheme/theme
-- │ ├ 01_whichkey.lua -- Displays keymaps on input

View file

@ -2,7 +2,11 @@ return {
{
"catgoose/nvim-colorizer.lua",
event = "BufReadPre",
opts = {},
opts = {
user_default_options = {
names = false,
},
},
},
{
"karb94/neoscroll.nvim",