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"