-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.lua
33 lines (31 loc) · 814 Bytes
/
init.lua
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
26
27
28
29
30
31
32
33
-- Lazy plugin manager
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require('mappings')
require('settings')
require('lazy').setup('plugins')
require('colorscheme')
-- plugin configs
require('conf.alpha')
require('conf.autopairs')
require('conf.bufferline')
require('conf.cmp')
require('conf.colorizer')
require('conf.illuminate')
require('conf.indentline')
require('conf.lsp')
require('conf.telescope')
require('conf.toggleterm')
require('conf.tree')
require('conf.treesitter')
require('conf.zenmode')