diff --git a/bashrc b/bashrc index 734b0b5..9bf4b1b 100644 --- a/bashrc +++ b/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" diff --git a/vimrc b/vimrc index 4e52507..b0f1bfa 100644 --- a/vimrc +++ b/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