Skip to content

Instantly share code, notes, and snippets.

View DryLabRebel's full-sized avatar
🙂
Chillin

Geoff English, Ph.D. DryLabRebel

🙂
Chillin
View GitHub Profile
@romainl
romainl / vimrc
Last active September 8, 2022 06:09
One way to set up MacVim for Python and Python 3 on MacOS (assuming Python and Python 3 were installed through MacPorts)
if toupper(substitute(system('uname'), '\n', '', '')) =~ 'DARWIN'
\ && exists('+pythonhome')
\ && exists('+pythondll')
\ && exists('+pythonthreehome')
\ && exists('+pythonthreedll')
let python_path = '/opt/local/Library/Frameworks/Python.framework/Versions'
let &pythonhome = ''
let &pythondll = ''
let &pythonthreehome = ''
let &pythonthreedll = ''