blob: 1ff0c8477aec4091c7a5b33015cefcdc54761641 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
-- Load first, contains leader setting
require('config.set')
-- Install https://github.com/folke/lazy.nvim
local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
vim.fn.system {
'git',
'clone',
'--filter=blob:none',
'https://github.com/folke/lazy.nvim.git',
'--branch=stable',
lazypath,
}
end
vim.opt.rtp:prepend(lazypath)
-- Start plugin manager lazy.nvim, super important
require('lazy').setup('plugins', {
change_detection = {
notify = false,
},
})
require('config.keymap')
|