Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Add editor config
Browse files Browse the repository at this point in the history
  • Loading branch information
glejeune committed Mar 17, 2015
1 parent 9eeabb7 commit 5981a34
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
9 changes: 9 additions & 0 deletions _editorconfig
@@ -0,0 +1,9 @@
# top-most EditorConfig file
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.erl]
max_line_length = 160
3 changes: 3 additions & 0 deletions _vimrc.bundle
Expand Up @@ -51,6 +51,9 @@ NeoBundle 'sjl/splice.vim'
NeoBundle 'digitaltoad/vim-jade'
NeoBundle 'kchmck/vim-coffee-script'
NeoBundle 'airblade/vim-gitgutter'
NeoBundle 'mcandre/Conque-Shell'
NeoBundle 'editorconfig/editorconfig-vim'
NeoBundle 'adimit/prolog.vim'

call neobundle#end()

Expand Down
2 changes: 1 addition & 1 deletion _zsh/rc/prompt
Expand Up @@ -60,7 +60,7 @@ precmd () {
if [[ -s ~/.rvm/scripts/rvm ]] ; then
RUBY_VERSION_PROMPT=$(~/.rvm/bin/rvm-prompt)
elif [[ -s ~/.rbenv/bin/rbenv ]] ; then
RUBY_VERSION_PROMPT=$(~/.rbenv/bin/rbenv global)
RUBY_VERSION_PROMPT=$(~/.rbenv/bin/rbenv version | awk '{print $1}')
else
RUBY_VERSION_PROMPT=""
fi
Expand Down
1 change: 1 addition & 0 deletions _zshrc
Expand Up @@ -23,3 +23,4 @@ setopt autocd

export ZSHRC_LOCAL=~/.zshrc.local
[ -d $ZSHRC_LOCAL ] && [ -f ~/.zshrc.local/zshrc ] && source ~/.zshrc.local/zshrc

0 comments on commit 5981a34

Please sign in to comment.