2024-08-04 03:28:42 +02:00
|
|
|
-- [[ Setting autocmd's ]]
|
|
|
|
-- See `:help autocmd`
|
|
|
|
|
|
|
|
-- Instantly move help window to the right
|
|
|
|
-- This is almost certainly a hacky way to do this)
|
|
|
|
vim.api.nvim_create_autocmd('FileType', {
|
|
|
|
pattern = { 'help' },
|
2024-08-04 09:33:12 +02:00
|
|
|
command = 'wincmd L',
|
2024-08-04 03:28:42 +02:00
|
|
|
})
|