Skip to content

Instantly share code, notes, and snippets.

View rjeffman's full-sized avatar

Rafael Guterres Jeffman rjeffman

View GitHub Profile
@rjeffman
rjeffman / .viminirc
Last active July 11, 2025 18:23
This is a wrapper script to run vim with @simo5 Vimini plugin (https://github.com/simo5/vimini), if you use Vim-Plug as plugin manager. Copy the `.viminirc` to your home directory and run `./vimini` to create a Python virtual environment ready for Gemini integration. On the first run, you need to install the vim plugins with `:PlugInstall`. (Thi…
if filereadable('/etc/vimrc')
execute 'source ' . '/etc/vimrc'
else
set nocompatible " Assume we have some interesting settings.
endif
let myrc=expand('~/.vimrc')
if !filereadable(myrc)
let myrc=expand('~/.vim/vimrc')
if !filereadable(myrc)