Skip to content

Commit

Permalink
chore(nvim): adapt to v0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
sbulav committed May 21, 2024
1 parent 26d3338 commit 3d0e9e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nvim/lua/plugins/lualine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ local function lsp_progress(_, is_active)
if not is_active then
return
end
local messages = vim.lsp.util.get_progress_messages()
local messages = vim.lsp.status()
if #messages == 0 then
return ""
end
Expand Down
2 changes: 1 addition & 1 deletion nvim/lua/plugins/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ return {
{
"nvim-treesitter/nvim-treesitter",
dependencies = {
"HiPhish/nvim-ts-rainbow2",
"HiPhish/rainbow-delimiters.nvim",
"JoosepAlviste/nvim-ts-context-commentstring",
},
cmd = { "TSUpdate" },
Expand Down

0 comments on commit 3d0e9e9

Please sign in to comment.