summaryrefslogtreecommitdiff
path: root/lua/packages.lua
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2023-04-06 21:35:40 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2023-04-06 21:35:40 +0200
commit23959a977ff6b6cc1165f5489c88bc62f39b3ec2 (patch)
tree327bdaed60ddcd94f6de74f7fe54dd5e6ead4ba5 /lua/packages.lua
parent3a53259185d3ab2f57d78c561760cef5eeee16a0 (diff)
Indent lines stuff
Diffstat (limited to 'lua/packages.lua')
-rw-r--r--lua/packages.lua55
1 files changed, 29 insertions, 26 deletions
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",
+ },
})