add readme and local vim

This commit is contained in:
themancalledjakob 2024-05-08 16:23:29 +02:00
parent d9e6de3bfb
commit 6bef81ac26
2 changed files with 16 additions and 0 deletions

7
README.md Normal file
View file

@ -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."
```

9
_vimrc_local.vim Normal file
View file

@ -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}}