Replace nvim-lsp-installer with mason

This commit is contained in:
Saeed Afzal
2022-08-05 19:51:44 +01:00
parent b99c90ab56
commit 381c2d2687
3 changed files with 6 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
local nvim_tree_events = require("nvim-tree.events")
local bufferline_state = require("bufferline.state")
nvim_tree_events.on_tree_open(function ()
nvim_tree_events.on_tree_open(function()
bufferline_state.set_offset(31, "File Tree")
end)
nvim_tree_events.on_tree_close(function ()
nvim_tree_events.on_tree_close(function()
bufferline_state.set_offset(0)
end)