dotfiles/.config/nvim/init.lua

43 lines
1.7 KiB
Lua
Raw Normal View History

-- Blake's neovim rc file
2021-09-05 13:47:46 -07:00
-- plugins and plugin settings: ~/.config/nvim/lua/blake/plugins.lua
require('blake.plugins')
-- basic settings: ~/.config/nvim/lua/blake/settings.lua
require('blake.settings')
2021-09-03 01:18:44 -07:00
-- TODO:
2022-01-02 17:39:36 -08:00
-- Make plugins more modular
2022-01-07 12:21:24 -08:00
-- - Have a file with toggles for all plugins
-- - If a plugin toggle is off,
-- - the configuration for it should not be run,
-- - and the plugin should not be loaded
-- Downsides:
-- - requires me to add the plugin in two places (one in the plugin list, and again in the toggle list)
2022-01-02 17:39:36 -08:00
-- OR
2022-01-07 12:21:24 -08:00
-- - Find out how to get a list of loaded plugins
-- - Load the configuration for each plugin
-- Downsides:
-- - May not be plugin manager-independent
-- OR
-- - Create a file for each plugin that requires configuration and load them from their own files.
-- - I think this would be the most modular approach, as it would make my config more independent specific plugin managers.
-- Downsides:
-- - Lots of files (could be a good thing)
-- OR
-- - Make a list of plugins ('tpope/surround' style)
-- - load all plugins using whatever plugin manager in a for loop
-- - in the for loop, optionally load the configuration for each plugin based on its name
-- Downsides:
-- - Hardest (requires me to make a for loop, and I don't know lua)
2022-01-07 13:04:52 -08:00
-- - Doesn't take advantage of advanced plugin manager features (ex: dependencies)
2022-10-20 04:13:54 -07:00
-- Plugins to get:
-- https://github.com/glepnir/mcc.nvim
-- https://github.com/glepnir/lspsaga.nvim
-- https://github.com/glepnir/template.nvim
-- https://github.com/glepnir/dashboard-nvim
--
-- Plugins to check out:
-- https://github.com/glepnir/indent-guides.nvim
-- https://github.com/glepnir/coman.nvim