mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2026-09-09 13:48:34 -07:00
15 lines
708 B
Lua
15 lines
708 B
Lua
-- You can add your own plugins here or in other files in this directory!
|
|
-- I promise not to create any merge conflicts in this directory :)
|
|
--
|
|
-- See the kickstart.nvim README for more information
|
|
|
|
-- Iterate over all Lua files in the plugins directory and load them.
|
|
-- `vim.fs.dir()` iteration order is unspecified and must not be relied upon.
|
|
local plugins_dir = vim.fs.joinpath(vim.fn.stdpath 'config', 'lua', 'custom', 'plugins')
|
|
for file_name, type in vim.fs.dir(plugins_dir, { follow = true }) do
|
|
if (type == 'file' or type == 'link') and file_name:match '%.lua$' and file_name ~= 'init.lua' then
|
|
local module = file_name:gsub('%.lua$', '')
|
|
require('custom.plugins.' .. module)
|
|
end
|
|
end
|