diff --git a/README.md b/README.md new file mode 100644 index 0000000..e20d338 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# get bpy python working by: +```bash +$HOME/git/tools/blender_git/build_linux_v4.1/bin/4.1/python/bin/python3.11 -m venv venv +source venv/bin/activate +pip install bpy +echo "what the fuck, is it working? I hope so." +``` diff --git a/_vimrc_local.vim b/_vimrc_local.vim new file mode 100644 index 0000000..b4166ea --- /dev/null +++ b/_vimrc_local.vim @@ -0,0 +1,9 @@ +""""""""""""""""""""""""""""""""" JEDI + +let g:jedi#auto_initialization = 1 +let g:jedi#use_tabs_not_buffers = 1 +let g:jedi#environment_path = "venv" + +""""""""""""""""""""""""""""""""" ALE + +let g:ale_pattern_options = {'\.py$': {'ale_enabled': 0}}