21 lines
484 B
Lua
21 lines
484 B
Lua
if vim.fn.has('nvim-0.7.0') == 0 then
|
|
print("Old version detected. Some stuff will probably not work.")
|
|
end
|
|
|
|
require('my/plugins')
|
|
require('my/functions')
|
|
require('my/settings')
|
|
require('my/keymaps')
|
|
require('my/filetypes')
|
|
require('my/completion')
|
|
require('my/lsp')
|
|
require('my/tools')
|
|
require('my/coding')
|
|
require('my/net')
|
|
|
|
if packer_bootstrap then
|
|
require('packer').sync()
|
|
elseif not io.open(vim.fn.stdpath('config') .. '/plugin') then
|
|
require('packer').install()
|
|
end
|