1
0
Fork 0

nvim: formatting

This commit is contained in:
tastytea 2023-08-06 18:06:30 +02:00
parent 5ddcc03b7d
commit d176f91ffd
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 12 additions and 6 deletions

View File

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