Skip to content
Snippets Groups Projects
Commit a821a2ee authored by eisenale's avatar eisenale
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
# Setting PATH for Python 2.7
# The orginal version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export PATH
.vimrc 0 → 100644
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'tpope/vim-eunuch'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
set number
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment