summaryrefslogtreecommitdiff
path: root/init.lua
blob: e378b8328b5fa6ef0587aee3ab89f7a22ae896f7 (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')