Browse Source

add flake8 and config directory to setup

pull/1/head
Brett Langdon 12 years ago
parent
commit
cc6c271fbe
2 changed files with 6 additions and 4 deletions
  1. +2
    -0
      config/flake8
  2. +4
    -4
      setup.sh

+ 2
- 0
config/flake8 View File

@ -0,0 +1,2 @@
[flake8]
max-line-length=120

+ 4
- 4
setup.sh View File

@ -1,4 +1,4 @@
#!/bin/bash
B0;95;c#!/bin/bash
############################ ############################
# setup.sh # setup.sh
# This script creates symlinks from the home directory to any desired dotfiles in ~/dotfiles # This script creates symlinks from the home directory to any desired dotfiles in ~/dotfiles
@ -8,7 +8,7 @@
dir=~/dotfiles # dotfiles directory dir=~/dotfiles # dotfiles directory
olddir=~/dotfiles_old # old dotfiles backup 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 done
echo "Installing Elpy" echo "Installing Elpy"
sudo pip install elpy rope
sudo pip install elpy jedi
echo "Installing Virtualenvwrapper" echo "Installing Virtualenvwrapper"
sudo pip install virtualenvwrapper sudo pip install virtualenvwrapper
@ -59,4 +59,4 @@ echo "Setting up CHEF_PATH"
mkdir -p $CHEF_PATH mkdir -p $CHEF_PATH
echo "Source ~/.zshrc" echo "Source ~/.zshrc"
source ~/.zshrc
. ~/.zshrc

Loading…
Cancel
Save