summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChrisatmachine <[email protected]>2018-11-11 14:07:55 -0500
committerChrisatmachine <[email protected]>2018-11-11 14:07:55 -0500
commit2d12a4f1a7a0b0fb047c81952498f8107341dd79 (patch)
treefd4807e66049d3dbb0d0939e6b64d1b3f2dfd0df
parentdc120a9571faf977ae2bacc6202800a0a1e9a9d8 (diff)
added js support
-rw-r--r--init.vim10
1 files changed, 8 insertions, 2 deletions
diff --git a/init.vim b/init.vim
index 59a5e223..d73e99e5 100644
--- a/init.vim
+++ b/init.vim
@@ -125,6 +125,12 @@ if dein#load_state('~/chris/.cache/dein')
" For autocomplete
call dein#add('zchee/deoplete-jedi')
call dein#add('Shougo/deoplete.nvim')
+ " For Web Development
+ call dein#add('pangloss/vim-javascript')
+ call dein#add('elzr/vim-json')
+ call dein#add('mxw/vim-jsx')
+ call dein#add('mattn/emmet-vim')
+ call dein#add('prettier/vim-prettier', {'do': 'yarn install'})
" Auto flow
call dein#add('wokalski/autocomplete-flow')
" For vim 8+
@@ -154,8 +160,8 @@ endif
"""""""""" SPACEVIM THEME """"""""""
-" Set theme
-if strftime('%H') >= 7 && strftime('%H') < 8
+" Set theme TODO kill this light theme
+if strftime('%H') >= 7 && strftime('%H') < 7
set background=light
colorscheme stellarized
else