marleyvim/lua/config/autocmds.lua

10 lines
284 B
Lua

-- Open help window in a vsplit to the right.
vim.api.nvim_create_autocmd('BufWinEnter', {
group = vim.api.nvim_create_augroup('help_window_right', {}),
pattern = { '*.txt' },
callback = function()
if vim.o.filetype == 'help' then
vim.cmd.wincmd 'L'
end
end,
})