diff options
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 44 |
1 files changed, 22 insertions, 22 deletions
@@ -3,32 +3,32 @@ require("core") 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", -- latest stable release - lazypath, - }) + 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("lazy").setup({ - spec = { - { import = "plugins.core" }, - { import = "plugins.eyecandy" }, - { import = "plugins.lsp" }, - { import = "plugins.lang" }, - { import = "plugins.extra.copilot" }, - { import = "plugins.extra.vim-easy-align" }, - { import = "plugins.extra.vim-fugitive" }, - --{ import = "plugins.extra.feline" }, - }, - change_detection = { - enabled = true, - notify = false, - }, + spec = { + { import = "plugins.core" }, + { import = "plugins.eyecandy" }, + { import = "plugins.lsp" }, + { import = "plugins.lang" }, + { import = "plugins.extra.copilot" }, + { import = "plugins.extra.vim-easy-align" }, + { import = "plugins.extra.vim-fugitive" }, + --{ import = "plugins.extra.feline" }, + }, + change_detection = { + enabled = true, + notify = false, + }, }) --vim.api.nvim_create_autocmd({ "BufEnter", "BufRead" }, { |