Merge branch 'master' of github:GeoffreyFrogeye/dotfiles

This commit is contained in:
Geoffrey Frogeye 2016-03-16 17:56:42 +01:00
commit 33d5277a13
2 changed files with 6 additions and 1 deletions

2
bashrc
View file

@ -107,7 +107,7 @@ function clean {
done
find . -type f -name Makefile -print0 | while IFS= read -r -d '' file; do
echo "--> $file"
(cd "${file//Makefile}"; make clear; make clean)
(cd "${file//Makefile}"; make clean)
done
find . -type d -name .git -print0 | while IFS= read -r -d '' dir; do
echo "--> $file"

5
vimrc
View file

@ -32,6 +32,8 @@ Plugin 'Xuyuanp/nerdtree-git-plugin'
Plugin 'xolox/vim-misc'
Plugin 'xolox/vim-easytags'
Plugin 'majutsushi/tagbar'
"Plugin 'gilligan/vim-lldb'
Plugin 'welle/targets.vim'
call vundle#end() " required
filetype plugin indent on " required
@ -218,6 +220,9 @@ set background=dark
set t_Co=256
colorscheme solarized
" From http://stackoverflow.com/a/5004785/2766106
set list
set listchars=tab:╾╌,trail,extends:↦,precedes:↤,nbsp:_
filetype on
filetype plugin on