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' } }