Merge branch 'master' of github:GeoffreyFrogeye/dotfiles
This commit is contained in:
commit
33d5277a13
2
bashrc
2
bashrc
|
@ -107,7 +107,7 @@ function clean {
|
||||||
done
|
done
|
||||||
find . -type f -name Makefile -print0 | while IFS= read -r -d '' file; do
|
find . -type f -name Makefile -print0 | while IFS= read -r -d '' file; do
|
||||||
echo "--> $file"
|
echo "--> $file"
|
||||||
(cd "${file//Makefile}"; make clear; make clean)
|
(cd "${file//Makefile}"; make clean)
|
||||||
done
|
done
|
||||||
find . -type d -name .git -print0 | while IFS= read -r -d '' dir; do
|
find . -type d -name .git -print0 | while IFS= read -r -d '' dir; do
|
||||||
echo "--> $file"
|
echo "--> $file"
|
||||||
|
|
5
vimrc
5
vimrc
|
@ -32,6 +32,8 @@ Plugin 'Xuyuanp/nerdtree-git-plugin'
|
||||||
Plugin 'xolox/vim-misc'
|
Plugin 'xolox/vim-misc'
|
||||||
Plugin 'xolox/vim-easytags'
|
Plugin 'xolox/vim-easytags'
|
||||||
Plugin 'majutsushi/tagbar'
|
Plugin 'majutsushi/tagbar'
|
||||||
|
"Plugin 'gilligan/vim-lldb'
|
||||||
|
Plugin 'welle/targets.vim'
|
||||||
|
|
||||||
call vundle#end() " required
|
call vundle#end() " required
|
||||||
filetype plugin indent on " required
|
filetype plugin indent on " required
|
||||||
|
@ -218,6 +220,9 @@ set background=dark
|
||||||
set t_Co=256
|
set t_Co=256
|
||||||
colorscheme solarized
|
colorscheme solarized
|
||||||
|
|
||||||
|
" From http://stackoverflow.com/a/5004785/2766106
|
||||||
|
set list
|
||||||
|
set listchars=tab:╾╌,trail:·,extends:↦,precedes:↤,nbsp:_
|
||||||
|
|
||||||
filetype on
|
filetype on
|
||||||
filetype plugin on
|
filetype plugin on
|
||||||
|
|
Loading…
Reference in a new issue