1

Update generated neovim config

This commit is contained in:
2024-08-15 14:28:54 +02:00
parent 07409c223d
commit 25cfcf2941
3809 changed files with 351157 additions and 0 deletions

View File

@ -0,0 +1,12 @@
local M = {}
---@param lines? string[]
function M.reset(lines)
vim.o.showmode = false
vim.api.nvim_feedkeys(vim.keycode("<Ignore><C-\\><C-n><esc>"), "nx", false)
vim.cmd("enew")
vim.cmd("normal! <c-w>o")
vim.api.nvim_buf_set_lines(0, 0, -1, false, lines or {})
end
return M