mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 02:10:05 +08:00
6 lines
145 B
Python
Vendored
6 lines
145 B
Python
Vendored
from pathlib import Path
|
|
import sys
|
|
|
|
BASE_DIR = Path(__file__).parent.parent
|
|
sys.path.insert(0, str(Path(BASE_DIR).joinpath('rplugin/python3')))
|