From 037b10ba20c3e79204a3e32a3b24f5b78d9ad8a8 Mon Sep 17 00:00:00 2001 From: "Adam A.G. Shamblin" Date: Tue, 14 Jun 2016 18:44:34 -0600 Subject: [PATCH] Have NERDTree ignore .pyc files. --- dotbash_profile | 5 +++++ dotvimrc | 1 + 2 files changed, 6 insertions(+) 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 -- 2.39.5