diff options
author | Chrisatmachine <[email protected]> | 2018-11-11 14:07:55 -0500 |
---|---|---|
committer | Chrisatmachine <[email protected]> | 2018-11-11 14:07:55 -0500 |
commit | 2d12a4f1a7a0b0fb047c81952498f8107341dd79 (patch) | |
tree | fd4807e66049d3dbb0d0939e6b64d1b3f2dfd0df | |
parent | dc120a9571faf977ae2bacc6202800a0a1e9a9d8 (diff) |
added js support
-rw-r--r-- | init.vim | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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 |