-
Vimfiler
-
https://raw.githubusercontent.com/JarrodCTaylor/dotfiles/master/vim/plugin-configs/vimfiler.vim
-
Vim Shell Executor
-
https://raw.githubusercontent.com/JarrodCTaylor/dotfiles/master/vim/plugin-configs/vim-shell-executor.vim
-
Syntastic
-
https://raw.githubusercontent.com/JarrodCTaylor/dotfiles/master/vim/plugin-configs/syntastic.vim
-
create virtualenv
-
install flake8
-
Jedi
-
https://raw.githubusercontent.com/JarrodCTaylor/dotfiles/master/vim/plugin-configs/jedi-vim.vim
-
let g:jedi#completions_command = ""
-
Sneak
-
https://raw.githubusercontent.com/JarrodCTaylor/dotfiles/master/vim/plugin-configs/vim-sneak.vim
-
Targets
-
https://raw.githubusercontent.com/JarrodCTaylor/dotfiles/master/vim/plugin-configs/targets.vim
Last active
August 29, 2015 14:16
-
-
Save mattjmorrison/6093dfe724027bb18c1e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" | |
config.vm.box = "ubuntu-14.04" | |
config.vm.provision "shell", | |
inline: <<-CMD | |
sudo apt-get install git vim python-virtualenv -y | |
wget https://raw.githubusercontent.com/JarrodCTaylor/dotfiles/master/vimrc -O .vimrc | |
mkdir -p .vim/plugin-configs | |
mkdir -p .vim/order-dependent-unite-config | |
wget https://raw.githubusercontent.com/JarrodCTaylor/dotfiles/master/vim/order-dependent-unite-config/unite.vim -O .vim/order-dependent-unite-config/unite.vim | |
sudo chown vagrant . -R | |
CMD | |
end |
- getting started with configuration
- start with Jarrod's vimrc and build something up
- :set paste
- vim as a language - composing commands
- Example python code: https://raw.githubusercontent.com/django/django/master/django/db/models/base.py
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment