mirror of
https://github.com/kossLAN/nvim-flake.git
synced 2025-11-05 02:09:49 -05:00
copilot: disable until I actually have the will power to fix it :p
This commit is contained in:
parent
30c6c69557
commit
bb6c005380
8 changed files with 33 additions and 194 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue