Skip to content

Commit

Permalink
chore(neovim): add projectionist and vim-test
Browse files Browse the repository at this point in the history
This patch adds two plugins that I find useful for my development
workflow:

- `vim-projectionist`: helps structuring project and increase speed in
file navigation

- `vim-test`: allows to quickly executes test no matter the language and
framework

This plugins needs to be configured (see #12 #13)
  • Loading branch information
anchnk committed Mar 5, 2019
1 parent 4e1cacd commit 93ad8ed
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions neovim/.config/nvim/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
Plug 'godlygeek/tabular'
Plug 'ntpeters/vim-better-whitespace'
Plug 'alpertuna/vim-header'
Plug 'tpope/vim-projectionist'
Plug 'janko-m/vim-test'
" }}}

" File Navigation {{{
Expand Down Expand Up @@ -192,6 +194,14 @@
" vim-markdown {{{
let g:vim_markdown_conceal = 0
" }}}

" vimux {{{
let g:VimuxOrientation = "h"
" }}}

" vim-test {{{
let test#strategy = "vimux"
" }}}
" }}}

" Neovim Providers {{{
Expand Down

0 comments on commit 93ad8ed

Please # to comment.