From cc6c271fbed6b3caf431e7b99bf42e336dd05b43 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Fri, 8 Nov 2013 09:20:57 -0500 Subject: [PATCH] add flake8 and config directory to setup --- config/flake8 | 2 ++ setup.sh | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 config/flake8 diff --git a/config/flake8 b/config/flake8 new file mode 100644 index 0000000..aa079ec --- /dev/null +++ b/config/flake8 @@ -0,0 +1,2 @@ +[flake8] +max-line-length=120 diff --git a/setup.sh b/setup.sh index e9e84aa..be68b57 100755 --- a/setup.sh +++ b/setup.sh @@ -1,4 +1,4 @@ -#!/bin/bash +B0;95;c#!/bin/bash ############################ # setup.sh # This script creates symlinks from the home directory to any desired dotfiles in ~/dotfiles @@ -8,7 +8,7 @@ dir=~/dotfiles # dotfiles directory olddir=~/dotfiles_old # old dotfiles backup directory -files="bashrc emacs emacs.d gitconfig gitignore_global zshrc oh-my-zsh" # list of files/folders to symlink in homedir +files="bashrc config emacs emacs.d gitconfig gitignore_global zshrc oh-my-zsh" # list of files/folders to symlink in homedir ########## @@ -35,7 +35,7 @@ for file in $files; do done echo "Installing Elpy" -sudo pip install elpy rope +sudo pip install elpy jedi echo "Installing Virtualenvwrapper" sudo pip install virtualenvwrapper @@ -59,4 +59,4 @@ echo "Setting up CHEF_PATH" mkdir -p $CHEF_PATH echo "Source ~/.zshrc" -source ~/.zshrc +. ~/.zshrc