Nvim: update treesitter and use themify

This commit is contained in:
Robert Kmieć
2024-09-06 09:36:15 +02:00
parent 801ba0dfdf
commit fcecb7f575
8 changed files with 75 additions and 206 deletions

View File

@@ -1,4 +1,14 @@
return {
'glacambre/firenvim',
build = ":call firenvim#install(0)"
build = ":call firenvim#install(0)",
config = function()
vim.api.nvim_create_autocmd({'UIEnter'}, {
callback = function(event)
local client = vim.api.nvim_get_chan_info(vim.v.event.chan).client
if client ~= nil and client.name == "Firenvim" then
vim.o.laststatus = 0
end
end
})
end
}