Swap next and previous error keybinds in vim
diff --git a/src/apps/personal/vim.nix b/src/apps/personal/vim.nix
index 1038865..5dd21d3 100644
--- a/src/apps/personal/vim.nix
+++ b/src/apps/personal/vim.nix
@@ -39,8 +39,8 @@
nnoremap ]w :NextTrailingWhitespace<CR>
nnoremap [w :PrevTrailingWhitespace<CR>
- nmap <silent> [c :call CocAction('diagnosticNext')<cr>
- nmap <silent> ]c :call CocAction('diagnosticPrevious')<cr>
+ nmap <silent> ]c :call CocAction('diagnosticNext')<cr>
+ nmap <silent> [c :call CocAction('diagnosticPrevious')<cr>
nmap <silent> t <Plug>(coc-codeaction-selected)
nmap me <Cmd>CocCommand explorer<CR>