From c8444565822ad03ec13f0984baa67bb8c009b815 Mon Sep 17 00:00:00 2001 From: Daniel Lynn Date: Thu, 17 Jun 2021 15:05:59 -0500 Subject: [PATCH] Add test, projectionist plugins to vim --- nvim/plugins | 2 ++ nvim/test | 5 +++++ vimrc | 5 +++++ zsh/aliases | 1 - 4 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 nvim/test diff --git a/nvim/plugins b/nvim/plugins index defed80..2000137 100644 --- a/nvim/plugins +++ b/nvim/plugins @@ -2,7 +2,9 @@ Plug 'cespare/vim-toml' Plug 'mileszs/ack.vim' Plug 'tpope/vim-fugitive' +Plug 'tpope/vim-projectionist' Plug 'tpope/vim-surround' +Plug 'vim-test/vim-test' " CoC Plug 'neoclide/coc.nvim', {'branch': 'release'} | diff --git a/nvim/test b/nvim/test new file mode 100644 index 0000000..f87f050 --- /dev/null +++ b/nvim/test @@ -0,0 +1,5 @@ +nmap t :TestNearest +nmap T :TestFile +nmap a :TestSuite +nmap l :TestLast +nmap g :TestVisit diff --git a/vimrc b/vimrc index d70525d..9a88661 100644 --- a/vimrc +++ b/vimrc @@ -85,6 +85,11 @@ if filereadable(expand("~/.config/nvim/ack")) source ~/.config/nvim/ack endif +" Test setup +if filereadable(expand("~/.config/nvim/test")) + source ~/.config/nvim/test +endif + " Color setup if filereadable(expand("~/.config/nvim/colors")) source ~/.config/nvim/colors diff --git a/zsh/aliases b/zsh/aliases index ad9930c..ff7678a 100644 --- a/zsh/aliases +++ b/zsh/aliases @@ -1,2 +1 @@ alias e="$EDITOR" -alias ls="ls --color"