From d176f91ffdb5f5bf8f5ac357258817012f78dbf1 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 6 Aug 2023 18:06:30 +0200 Subject: [PATCH] nvim: formatting --- .config/nvim/lua/my/plugins.lua | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.config/nvim/lua/my/plugins.lua b/.config/nvim/lua/my/plugins.lua index 51a40f3..7858829 100644 --- a/.config/nvim/lua/my/plugins.lua +++ b/.config/nvim/lua/my/plugins.lua @@ -116,8 +116,10 @@ require('packer').startup({ requires = { 'https://github.com/nvim-lua/plenary.nvim', 'https://github.com/nvim-treesitter/nvim-treesitter', - { 'https://github.com/kyazdani42/nvim-web-devicons', - cond = nerdfont_installed } + { + 'https://github.com/kyazdani42/nvim-web-devicons', + cond = nerdfont_installed + } }, } use { @@ -128,15 +130,19 @@ require('packer').startup({ 'https://github.com/kyazdani42/nvim-tree.lua', tag = '*', requires = { - { 'https://github.com/kyazdani42/nvim-web-devicons', - cond = nerdfont_installed } + { + 'https://github.com/kyazdani42/nvim-web-devicons', + cond = nerdfont_installed + } } } use { 'https://github.com/nvim-lualine/lualine.nvim', requires = { - { 'https://github.com/kyazdani42/nvim-web-devicons', - cond = nerdfont_installed }, + { + 'https://github.com/kyazdani42/nvim-web-devicons', + cond = nerdfont_installed + }, 'https://github.com/nvim-lua/lsp-status.nvim' } }