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
|
||||
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
5
vimrc
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue