From 6bef81ac262f726d7f1286c06c473a61e7faeeba Mon Sep 17 00:00:00 2001 From: themancalledjakob Date: Wed, 8 May 2024 16:23:29 +0200 Subject: [PATCH] add readme and local vim --- README.md | 7 +++++++ _vimrc_local.vim | 9 +++++++++ 2 files changed, 16 insertions(+) create mode 100644 README.md create mode 100644 _vimrc_local.vim 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}}