]> Vexing Labs - dotfiles.git/commitdiff
Have NERDTree ignore .pyc files.
authorAdam A.G. Shamblin <adam.shamblin@gmail.com>
Wed, 15 Jun 2016 00:44:34 +0000 (18:44 -0600)
committerAdam A.G. Shamblin <adam.shamblin@gmail.com>
Wed, 15 Jun 2016 00:44:34 +0000 (18:44 -0600)
dotbash_profile
dotvimrc

index 709fd4601a0f9334a416faa1465c7b0829e49409..263ccdd1594908f623518ef34dc2fc74693cabd5 100644 (file)
@@ -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
index cb194cbeb4425d304ba481227be926b6e3780d5e..24443b2842feacdba7876fc935a9eba0b0d27362 100644 (file)
--- a/dotvimrc
+++ b/dotvimrc
@@ -45,6 +45,7 @@ let mapleader=","
 "let g:CommandTAcceptSelectionTabMap='<CR>'
 let NERDTreeRespectWildIgnore=1
 let NERDTreeShowHidden=1
+let NERDTreeIgnore=['\.pyc$']
 
 map <leader>f :CommandT<cr>
 map <leader>a :NERDTreeToggle<cr>