]> Arthur Taft Gitweb - nvim.git/blob - lua/config/lazy.lua
Change tab indent to 4 spaces
[nvim.git] / lua / config / lazy.lua
1 local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
2 if not vim.loop.fs_stat(lazypath) then
3   vim.fn.system({ "git", "clone", "--filter=blob:none",
4     "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
5 end
6 vim.opt.rtp:prepend(lazypath)
7
8 require("lazy").setup({
9   { import = "plugins" },            -- load all specs from lua/plugins/*.lua
10 }, {
11   ui = { border = "rounded" },
12   change_detection = { notify = false },
13 })