From 23959a977ff6b6cc1165f5489c88bc62f39b3ec2 Mon Sep 17 00:00:00 2001
From: Steven Le Rouzic <steven.lerouzic@gmail.com>
Date: Thu, 6 Apr 2023 21:35:40 +0200
Subject: Indent lines stuff

---
 lua/packages.lua | 55 +++++++++++++++++++++++++++++--------------------------
 1 file changed, 29 insertions(+), 26 deletions(-)

(limited to 'lua/packages.lua')

diff --git a/lua/packages.lua b/lua/packages.lua
index b84f5a9..c98ba8e 100644
--- a/lua/packages.lua
+++ b/lua/packages.lua
@@ -1,39 +1,39 @@
 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({
-	{
-		"nvim-telescope/telescope.nvim", tag = "0.1.1",
-		dependencies = { "nvim-lua/plenary.nvim" },
-	},
+    {
+        "nvim-telescope/telescope.nvim", tag = "0.1.1",
+        dependencies = { "nvim-lua/plenary.nvim" },
+    },
     {
         "nvim-telescope/telescope-fzf-native.nvim",
         build = "cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build",
     },
-	{
-		"Mofiqul/vscode.nvim",
-	},
-	{
-		"nvim-lualine/lualine.nvim",
-		dependencies = { "nvim-tree/nvim-web-devicons" },
-	},
-	{
-		"nvim-treesitter/nvim-treesitter",
-		dependencies = {
-			"nvim-treesitter/nvim-treesitter-textobjects",
-		},
-		build = ":TSUpdate",
-	},
+    {
+        "Mofiqul/vscode.nvim",
+    },
+    {
+        "nvim-lualine/lualine.nvim",
+        dependencies = { "nvim-tree/nvim-web-devicons" },
+    },
+    {
+        "nvim-treesitter/nvim-treesitter",
+        dependencies = {
+            "nvim-treesitter/nvim-treesitter-textobjects",
+        },
+        build = ":TSUpdate",
+    },
     {
         "VonHeikemen/lsp-zero.nvim",
         branch = "v2.x",
@@ -51,4 +51,7 @@ require("lazy").setup({
             { "L3MON4D3/LuaSnip" },
         },
     },
+    {
+        "lukas-reineke/indent-blankline.nvim",
+    },
 })
-- 
cgit