nvim/lua/lsp/basedpyright.lua

12 lines
241 B
Lua
Raw Normal View History

2024-08-21 15:44:28 +08:00
return {
on_attach = function()
G.api.nvim_create_user_command('R', function()
G.cmd [[set splitbelow]]
G.cmd [[sp]]
G.cmd [[term python3 %]]
G.cmd [[resize 10]]
G.cmd [[startinsert]]
end, {})
end
}