From: Adam A.G. Shamblin Date: Wed, 15 Jun 2016 00:44:34 +0000 (-0600) Subject: Have NERDTree ignore .pyc files. X-Git-Url: https://git.vexinglabs.com/?a=commitdiff_plain;h=037b10ba20c3e79204a3e32a3b24f5b78d9ad8a8;p=dotfiles.git Have NERDTree ignore .pyc files. --- diff --git a/dotbash_profile b/dotbash_profile index 709fd46..263ccdd 100644 --- a/dotbash_profile +++ b/dotbash_profile @@ -117,3 +117,8 @@ complete -F _ssh_hosts ssh alias preview="open -a Preview" alias jsoncb="pbpaste | python -mjson.tool | gvim -" + +# Setting PATH for Python 3.5 +# The orginal version is saved in .bash_profile.pysave +PATH="/Library/Frameworks/Python.framework/Versions/3.5/bin:${PATH}" +export PATH diff --git a/dotvimrc b/dotvimrc index cb194cb..24443b2 100644 --- a/dotvimrc +++ b/dotvimrc @@ -45,6 +45,7 @@ let mapleader="," "let g:CommandTAcceptSelectionTabMap='' let NERDTreeRespectWildIgnore=1 let NERDTreeShowHidden=1 +let NERDTreeIgnore=['\.pyc$'] map f :CommandT map a :NERDTreeToggle