summaryrefslogtreecommitdiff
path: root/modules/plugins.vim
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2019-02-16 11:44:35 -0500
committerChristian Chiarulli <[email protected]>2019-02-16 11:44:35 -0500
commitfa1be111d1224f9dad7c4c94ff3ab30f64894023 (patch)
tree8f31624cbe76c8cc3789cfd48485b0d4bb6837c6 /modules/plugins.vim
parent74c68a986fb9dcc6d43290de65d3361d8e63a8a1 (diff)
added new features goyo, sneak
Diffstat (limited to 'modules/plugins.vim')
-rw-r--r--modules/plugins.vim30
1 files changed, 20 insertions, 10 deletions
diff --git a/modules/plugins.vim b/modules/plugins.vim
index 714c6f27..feaa9ed2 100644
--- a/modules/plugins.vim
+++ b/modules/plugins.vim
@@ -9,10 +9,13 @@ if dein#load_state('~/.config/nvim/dein')
call dein#begin('~/.config/nvim/dein')
- " Themes
- call dein#add('liuchengxu/space-vim-dark')
- call dein#add('joshdick/onedark.vim')
- call dein#add('morhetz/gruvbox')
+ " All the Themes
+ call dein#add('flazz/vim-colorschemes')
+ " call dein#add('liuchengxu/space-vim-dark')
+ " call dein#add('joshdick/onedark.vim')
+ " call dein#add('morhetz/gruvbox')
+ " Neoterm
+ call dein#add('kassio/neoterm')
call dein#add('jacoborus/tender.vim')
" Better Syntax Support
call dein#add('sheerun/vim-polyglot')
@@ -21,6 +24,9 @@ if dein#load_state('~/.config/nvim/dein')
call dein#add('vim-airline/vim-airline-themes')
" File manager
call dein#add('scrooloose/NERDTree')
+ " Icons
+ call dein#add('ryanoasis/vim-devicons')
+ call dein#add('tiagofumo/vim-nerdtree-syntax-highlight')
" Start Screen
call dein#add('mhinz/vim-startify')
" For ctags
@@ -43,16 +49,20 @@ if dein#load_state('~/.config/nvim/dein')
" Fuzzy finder
call dein#add('junegunn/fzf.vim', { 'dir': '~/.fzf', 'do': './install --all' })
call dein#add('junegunn/fzf')
-
-
- "Git
+ " Sneak mode "
+ call dein#add('justinmk/vim-sneak')
+ ""Git
call dein#add('airblade/vim-gitgutter')
call dein#add('tpope/vim-fugitive')
" BufOnly use :BufOnly to unload all or pass it a single buffer
call dein#add('vim-scripts/BufOnly.vim')
- " Markdown viewer TODO Fix this stupid thing
- "call dein#add('iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' })
-
+ " Distraction free writing "
+ call dein#add('junegunn/goyo.vim')
+ call dein#add('junegunn/limelight.vim')
+ "Markdown viewer TODO Fix this stupid thing
+ call dein#add('iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' })
+"" call dein#add('iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }})
+"" call dein#add('euclio/vim-markdown-composer')
call dein#add('~/.config/nvim/dein/repos/github.com/Shougo/dein.vim')
call dein#add('Shougo/deoplete.nvim', {'do': 'UpdateRemotePlugins'})
call dein#add('Shougo/neoinclude.vim')