Joined July 2013
·
Posted to
Per project .vimrc files
over 1 year
ago
Be aware that secure
doesn't really offer a great deal of protection in the things that someone could do by slipping in a malicious .vimrc
into a directory you might pull from the wide world. There is a plugin that prompts you to confirm local rc files the first time and caches a hash of the file so it will prompt again if it is changed by someone else. There's some discussion/alternatives on Stack Overflow also.
Achievements
48 Karma
0 Total ProTip Views
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
Mongoose
Have at least one original repo where Ruby is the dominant language
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
It's a common mistake to suggest running
composer update
to install dependencies—what you want iscomposer install
, which will install exactly the current versions defined in the project'scomposer.lock
. Runningupdate
will update all of your dependencies. You don't want to find out at production deployment time that a package you depend on has made a breaking API change in its latest version that you haven't tested yet.