Add test, projectionist plugins to vim
This commit is contained in:
parent
12f182ac7c
commit
c844456582
@ -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'} |
|
||||
|
5
nvim/test
Normal file
5
nvim/test
Normal file
@ -0,0 +1,5 @@
|
||||
nmap <silent> <leader>t :TestNearest<CR>
|
||||
nmap <silent> <leader>T :TestFile<CR>
|
||||
nmap <silent> <leader>a :TestSuite<CR>
|
||||
nmap <silent> <leader>l :TestLast<CR>
|
||||
nmap <silent> <leader>g :TestVisit<CR>
|
5
vimrc
5
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
|
||||
|
@ -1,2 +1 @@
|
||||
alias e="$EDITOR"
|
||||
alias ls="ls --color"
|
||||
|
Loading…
x
Reference in New Issue
Block a user