copilot: disable until I actually have the will power to fix it :p

This commit is contained in:
kossLAN 2024-09-01 02:46:31 -04:00
parent 30c6c69557
commit bb6c005380
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
8 changed files with 33 additions and 194 deletions

View file

@ -24,6 +24,14 @@ api.nvim_create_autocmd('TermOpen', {
end,
})
-- Restore cursor position
vim.api.nvim_create_autocmd({ 'BufReadPost' }, {
pattern = { '*' },
callback = function()
vim.api.nvim_exec2('silent! normal! g`"zv', { output = false })
end,
})
-- LSP
local keymap = vim.keymap