From 4628318a5e83addf58425cddad5c7c79c6e8950b Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Wed, 16 Mar 2016 14:23:03 +0100 Subject: [PATCH 1/2] Vimupdate --- vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vimrc b/vimrc index d2055d9..aa4d7dc 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 @@ -217,6 +219,9 @@ syntax enable set background=dark colorscheme solarized +" From http://stackoverflow.com/a/5004785/2766106 +set list +set listchars=tab:╾╌,trail:·,extends:↦,precedes:↤,nbsp:_ filetype on filetype plugin on From d4d3d944cab97dde77e5ba6e37648cb764969b50 Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Wed, 16 Mar 2016 14:23:24 +0100 Subject: [PATCH 2/2] clearn --- bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bashrc b/bashrc index 505719c..f26d2dd 100644 --- a/bashrc +++ b/bashrc @@ -105,7 +105,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"