Compare commits

...

4 Commits

18 changed files with 29 additions and 14 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/.vim/black/
*.un~

7
.gitmodules vendored
View File

@ -2,7 +2,7 @@
path = .vim/pack/bardo/start/Indent-Guides
url = https://github.com/vim-scripts/Indent-Guides.git
[submodule ".vim/pack/bardo/start/black"]
path = .vim/pack/bardo/start/black
path = .vim/pack/bardo/opt/black
url = https://github.com/ambv/black.git
[submodule ".vim/pack/bardo/start/vim-trailing-whitespace"]
path = .vim/pack/bardo/start/vim-trailing-whitespace
@ -38,5 +38,8 @@
path = .vim/pack/bardo/start/vim-airline-themes
url = https://github.com/vim-airline/vim-airline-themes.git
[submodule ".vim/pack/bardo/start/ale"]
path = .vim/pack/bardo/start/ale
path = .vim/pack/bardo/opt/ale
url = https://github.com/w0rp/ale.git
[submodule ".vim/pack/bardo/start/typescript-vim"]
path = .vim/pack/bardo/start/typescript-vim
url = https://github.com/leafgarland/typescript-vim.git

@ -0,0 +1 @@
Subproject commit 634c81fd465269f59e3db878fe8405828e6d2da9

@ -0,0 +1 @@
Subproject commit ce14fa8b497bae2b50ec48b3bd7022573a59cdb1

@ -1 +1 @@
Subproject commit 4e31ae28d462987ee6ae4aadb403aa8774dadb4d
Subproject commit bf29af1c79df21aefd3f68660cc8c57a78f14021

@ -1 +0,0 @@
Subproject commit 73ca1e71918a0b50b7bbcbed91857c3618ad93cc

@ -1 +1 @@
Subproject commit 2073e2dd9fa0172ccdba92b3f0df25642a69f7db
Subproject commit 6191622d5806d4448fa2285047936bdcee57a098

@ -1 +0,0 @@
Subproject commit fe24a15b84955130f23c8ab9490d1cdb98607b53

@ -0,0 +1 @@
Subproject commit 17d85d8051ba21283e62a9101734981e10b732fd

@ -1 +1 @@
Subproject commit 72888d87ea57761f21c9f67cd0c0faa5904795eb
Subproject commit 0b2683464877c1e39d0c67427c7fdc4bc6697d15

@ -1 +1 @@
Subproject commit 3bfe1d00d48f7c35b7c0dd7af86229c9e63e14a9
Subproject commit 9772475fcc24bee50c884aba20161465211520c8

@ -1 +1 @@
Subproject commit 141d9d32a9fb58fe474fcc89cd7221eb2dd57b3a
Subproject commit f8238d70f873969fb41bf6a6b07ca63a4c0b82b1

@ -1 +1 @@
Subproject commit 682b2acdac89dccbb3f4a449ac2d20283eb7c26a
Subproject commit c452181975761f8b055b88eb1c98f736323510fd

@ -1 +1 @@
Subproject commit e2d7fcd682a461a3951e8b5067cc8a0083e75e35
Subproject commit 296eeaa8877528fae45e89a9013c5a8d317deef1

@ -1 +1 @@
Subproject commit 62189f57e66400fcd1135bfaf6ca2eeb2d233e15
Subproject commit b3a7395ce49b13145bbb54b1cdbfe6a33585bfe9

@ -1 +1 @@
Subproject commit b19923f7ab00bfcaeb252e0a452d49ebe2e49d6d
Subproject commit 4e77341a2f8b9b7e41e81e9debbcecaea5987c85

@ -1 +1 @@
Subproject commit 4c596548216b7c19971f8fc94e38ef1a2b55fee6
Subproject commit 6b7cdecff252474fe560d32c6f05641f3c5952c7

10
.vimrc
View File

@ -164,3 +164,13 @@ endif
" base16 color theme
let base16colorspace=256
colorscheme base16-solarized-dark
" Python-black
if has("python3")
packadd black
endif
" ALE conflicts with typescript-vim at the moment
if ! &ft=="typescript"
packadd ale
endif