diff --git a/lua/my_autocommands.lua b/lua/my_autocommands.lua index 696756a..00ed704 100644 --- a/lua/my_autocommands.lua +++ b/lua/my_autocommands.lua @@ -95,12 +95,3 @@ api.nvim_create_autocmd('BufEnter', { command = [[set formatoptions-=cro]] }) -- Keep window ratio when resize api.nvim_create_autocmd('VimResized', { command = [[wincmd =]] }) - -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 -})