Nothing fancy here.
I don't use gvim or macvim.
# cd /usr/local/bin && ln -s python3 python
$ mdkir ~/.vim_python
$ python -m venv ~/.vim_python
$ cd ~/.vim_python
$ bin/pip install openai
$ bin/pip install requests
The <leader> is ;.
;bopens the buffers list, see below;sopens the tree of current source dir (src/ or lib/);dopens the current Git diff for the current directory/repo;lopens the Git history for the current directory/repo;kscans the current file and open a readonly buffer of the results;mopens the Git blame for the current file;Yopens the Git history for the current file;Sopens the Git commit list for the current file;ggrep for the word under the cursor in the current subdir;ropens the last Ruby Rspec output
:Vg <regex> <dir>open grep results for the given regex in the given dir:Vt <dir>open the tree view for the given dir
So many people to credit...
MIT