2022-08-11 16:22:36 +02:00
|
|
|
require('my/plugins')
|
|
|
|
require('my/functions')
|
|
|
|
require('my/settings')
|
|
|
|
require('my/keymaps')
|
|
|
|
require('my/fileformats')
|
|
|
|
require('my/lsp')
|
|
|
|
require('my/completion')
|
|
|
|
require('my/ui')
|
|
|
|
require('my/coding')
|
2022-08-12 03:33:18 +02:00
|
|
|
require('my/net')
|
2022-08-08 13:57:38 +02:00
|
|
|
|
|
|
|
if packer_bootstrap then
|
|
|
|
require('packer').sync()
|
|
|
|
end
|
2022-08-12 19:29:03 +02:00
|
|
|
|
|
|
|
if not io.open(vim.fn.stdpath('config') .. '/plugin','r') then
|
|
|
|
require('packer').install()
|
|
|
|
end
|