mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:30:03 +08:00
8 lines
141 B
Python
8 lines
141 B
Python
import sys
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
BASE_DIR = Path(__file__).parent.parent
|
|
sys.path.insert(0, str(BASE_DIR.joinpath('rplugin/python3')))
|