22 lines
614 B
Lua
22 lines
614 B
Lua
-- Blake's neovim rc file
|
|
|
|
-- plugins and plugin settings: ~/.config/nvim/lua/blake/plugins.lua
|
|
require('blake.plugins')
|
|
-- basic settings: ~/.config/nvim/lua/blake/settings.lua
|
|
require('blake.settings')
|
|
|
|
-- TODO:
|
|
-- Make plugins more modular
|
|
-- - 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
|
|
-- OR
|
|
-- - Find out how to get a list of loaded plugins
|
|
-- - Load the configuration for each plugin
|
|
-- Plugins to install:
|
|
-- lightspeed.nvim
|
|
-- lightbulb?
|
|
-- telescope
|
|
-- - trouble.nvim
|
|
|