Переглянути джерело

Saving updates from macbook

Fred Damstra (Macbook 2015) 1 рік тому
батько
коміт
05d0a3fd2e
3 змінених файлів з 10 додано та 2 видалено
  1. 5 0
      .bashrc
  2. 3 0
      .gitignore
  3. 2 2
      .vimrc

+ 5 - 0
.bashrc

@@ -138,6 +138,11 @@ export GOPATH=$HOME/go
 #export GOROOT=/usr/lib/go
 #export PATH=$PATH:$GOROOT/bin
 
+# Add pip directory to path
+if [ -d  /Users/fdamstra/Library/Python/3.10/bin ]; then
+  export PATH=$PATH:/Users/fdamstra/Library/Python/3.10/bin
+fi
+
 # Add homebrew directories to the path
 if [ -d /opt/homebrew/bin ]; then
   export PATH=$PATH:/opt/homebrew/bin

+ 3 - 0
.gitignore

@@ -5,4 +5,7 @@
 .vim/bundle/indentpython.vim/
 .vim/bundle/salt-vim/
 .vim/bundle/syntastic/
+.vim/bundle/vim-autoformat/
 .vim/bundle/vim-terraform/
+.vim/bundle/black/
+.vim/black/

+ 2 - 2
.vimrc

@@ -165,13 +165,13 @@ augroup end
 
 au BufRead * normal zR
 
-
 " Ignore some markdown checks
 "   MD012 - Multiple consecutive blank lines
 "   MD013 - Line length in markdown
 "   MD026 - Trailing punctuation in header
 "   MD029 - Ordered lists. It wants everything with 1., 1., 1.,
 "   MD034 - Bare URL in markdown
+" We hate line length checks
 let g:syntastic_quiet_messages = {
-      \ "regex":   '\(MD012\|MD013\|MD026\|MD029\|MD034\)',
+      \ "regex":   '\(MD012\|MD013\|MD026\|MD029\|MD034|[Ll]ine [Ll]ength\)'
       \ }