mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 06:40:05 +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')))
|