Removed firenvim options

This commit is contained in:
Oliver Hartmann 2024-05-16 09:41:46 +02:00
parent 89eef9e104
commit 3d3f4e72e2

View File

@ -95,12 +95,3 @@ api.nvim_create_autocmd('BufEnter', { command = [[set formatoptions-=cro]] })
-- Keep window ratio when resize -- Keep window ratio when resize
api.nvim_create_autocmd('VimResized', { command = [[wincmd =]] }) 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
})