nvim/lua/lsp/pyright.lua

12 lines
241 B
Lua
Raw Normal View History

2023-11-25 23:42:01 +08:00
return {
2024-01-03 14:18:04 +08:00
on_attach = function()
2024-01-06 00:30:26 +08:00
G.api.nvim_create_user_command('R', function()
G.cmd [[set splitbelow]]
G.cmd [[sp]]
G.cmd [[term python3 %]]
2024-01-08 14:23:13 +08:00
G.cmd [[resize 10]]
2024-01-06 00:30:26 +08:00
G.cmd [[startinsert]]
end, {})
2024-01-03 14:18:04 +08:00
end
2023-11-25 23:42:01 +08:00
}