update
This commit is contained in:
parent
7c8e0574c8
commit
86a15ded7c
1 changed files with 14 additions and 2 deletions
16
init.lua
16
init.lua
|
|
@ -121,7 +121,15 @@ require("lazy").setup({
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
opts = {},
|
opts = {
|
||||||
|
sections = {
|
||||||
|
lualine_c = {
|
||||||
|
function()
|
||||||
|
return require('lsp-progress').progress()
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -156,7 +164,11 @@ require("lazy").setup({
|
||||||
"dstein64/nvim-scrollview",
|
"dstein64/nvim-scrollview",
|
||||||
"sindrets/diffview.nvim",
|
"sindrets/diffview.nvim",
|
||||||
'nvim-lua/plenary.nvim',
|
'nvim-lua/plenary.nvim',
|
||||||
'nvim-pack/nvim-spectre'
|
'nvim-pack/nvim-spectre',
|
||||||
|
{
|
||||||
|
'linrongbin16/lsp-progress.nvim',
|
||||||
|
opts = {}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
require 'nvim-treesitter.configs'.setup({
|
require 'nvim-treesitter.configs'.setup({
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue