diff --git a/vim/vim.symlink/snippets/typescript.snippets b/vim/vim.symlink/snippets/typescript.snippets
index 1ad4366..7675b1e 100644
--- a/vim/vim.symlink/snippets/typescript.snippets
+++ b/vim/vim.symlink/snippets/typescript.snippets
@@ -1,8 +1,8 @@
snippet ref
///
snippet des
- describe('${1}', ()=> {
+ describe('${1}', () => {
});
snippet it
- it('${1}', ()=> {
+ it('${1}', () => {
});
diff --git a/vim/vim.symlink/spell/en.utf-8.add b/vim/vim.symlink/spell/en.utf-8.add
index e5674f4..964d18e 100644
--- a/vim/vim.symlink/spell/en.utf-8.add
+++ b/vim/vim.symlink/spell/en.utf-8.add
@@ -45,3 +45,4 @@ polyfill
frontend
Backend
CSS
+SVG
diff --git a/vim/vim.symlink/spell/en.utf-8.add.spl b/vim/vim.symlink/spell/en.utf-8.add.spl
index b58e230..196cdcf 100644
Binary files a/vim/vim.symlink/spell/en.utf-8.add.spl and b/vim/vim.symlink/spell/en.utf-8.add.spl differ
diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink
index c50df5e..fec5c69 100644
--- a/vim/vimrc.symlink
+++ b/vim/vimrc.symlink
@@ -399,7 +399,9 @@ nmap mq :MarkedQuit
nmap s :SyntasticToggleMode
" allow es5 mode when looking at TypeScript
-let g:syntastic_typescript_tsc_args = '--module amd --target ES5'
+let g:syntastic_typescript_tsc_args = '--module amd --target ES5 --noImplicitAny'
+let g:syntastic_typescript_checkers = ['tslint']
+let g:syntastic_javascript_checkers = ['jshint', 'jscs']
" CtrlP ignore patterns
let g:ctrlp_custom_ignore = {
diff --git a/zsh/zshrc.symlink b/zsh/zshrc.symlink
index c921843..7b13d52 100644
--- a/zsh/zshrc.symlink
+++ b/zsh/zshrc.symlink
@@ -57,7 +57,7 @@ source `brew --prefix`/etc/profile.d/z.sh
# Base16 Shell
if [ -z "$THEME" ]; then
- export THEME="base16-atelierlakeside"
+ export THEME="base16-pop"
fi
if [ -z "$BACKGROUND" ]; then
export BACKGROUND="dark"