aboutsummaryrefslogtreecommitdiffstats
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to '')
m---------vim/plugged/Ultisnips0
m---------vim/plugged/ale0
m---------vim/plugged/bufexplorer0
m---------vim/plugged/fzf0
m---------vim/plugged/fzf.vim0
m---------vim/plugged/jedi0
m---------vim/plugged/vim-commentary0
m---------vim/plugged/vim-dispatch0
m---------vim/plugged/vim-fugitive0
m---------vim/plugged/vim-go0
m---------vim/plugged/vim-ledger0
m---------vim/plugged/vim-polyglot0
m---------vim/plugged/vim-sensible0
m---------vim/plugged/vim-signify0
m---------vim/plugged/vim-snippets0
m---------vim/plugged/vim-surround0
m---------vim/plugged/vim-test0
m---------vim/plugged/vim-unimpaired0
-rw-r--r--vim/vimrc15
19 files changed, 14 insertions, 1 deletions
diff --git a/vim/plugged/Ultisnips b/vim/plugged/Ultisnips
-Subproject e99fdf15cd55a4a8e0cb0a80a6810c1867a5c40
+Subproject 0ad238b1910d447476b2d98f593322c1cdb7128
diff --git a/vim/plugged/ale b/vim/plugged/ale
-Subproject 951a668b1490f0b3dcdcec6b4ebf3f626c0f416
+Subproject fbae1bc1937ce69fa80b4b32d178ce666fd5c07
diff --git a/vim/plugged/bufexplorer b/vim/plugged/bufexplorer
-Subproject e782dab0fe9523ac65d9fe4f726f2efe924e3f4
+Subproject 5a830d5d2d7417bf02339ec279c90e98dde822f
diff --git a/vim/plugged/fzf b/vim/plugged/fzf
-Subproject 07da058eae6f26de4cbe08c48563154e775f618
+Subproject 1116e481bef4f63abe0e506ce20469e244c505e
diff --git a/vim/plugged/fzf.vim b/vim/plugged/fzf.vim
-Subproject 9ceac718026fd39498d95ff04fa04d3e40c465d
+Subproject dc71692255b62d1f67dc55c8e51ab1aa467b1d4
diff --git a/vim/plugged/jedi b/vim/plugged/jedi
-Subproject 8b0d391ac15c07dfb7902ee35dff35d3ccc900e
+Subproject 6ee33bd385c9f5e3b1ceba6338d465953d64f7a
diff --git a/vim/plugged/vim-commentary b/vim/plugged/vim-commentary
-Subproject 3654775824337f466109f00eaf6759760f65be3
+Subproject e87cd90dc09c2a203e13af9704bd0ef79303d75
diff --git a/vim/plugged/vim-dispatch b/vim/plugged/vim-dispatch
-Subproject 00e77d90452e3c710014b26dc61ea919bc895e9
+Subproject 6cc2691576f97d43f8751664d1a1a908b99927e
diff --git a/vim/plugged/vim-fugitive b/vim/plugged/vim-fugitive
-Subproject dd8107cabf5fe85df94d5eedcae52415e543f20
+Subproject 5b52a0f395065d6cb7b65a00a5e17eaf9ebd64d
diff --git a/vim/plugged/vim-go b/vim/plugged/vim-go
-Subproject 11752f23743ac55ffa8b0662ae480ebfb0dc855
+Subproject 8c4db1c61432511a3aa55971dabb2171cbcba7b
diff --git a/vim/plugged/vim-ledger b/vim/plugged/vim-ledger
-Subproject 212e3aa210c9f0965e4b234653a08fd3aa52547
+Subproject 8e735f84d2d954229ee65f4dc71bfc0bec897d9
diff --git a/vim/plugged/vim-polyglot b/vim/plugged/vim-polyglot
-Subproject 38282d58387cff48ac203f6912c05e4c8686141
+Subproject bc8a81d3592dab86334f27d1d43c080ebf680d4
diff --git a/vim/plugged/vim-sensible b/vim/plugged/vim-sensible
-Subproject 8985da7669bbd73afce85ef0e4a3e1ce2e48859
+Subproject 5693bb650a26723975276bef7b1da2f00a571e0
diff --git a/vim/plugged/vim-signify b/vim/plugged/vim-signify
-Subproject 8bc268c79d4053c2f5ccaadcf0b666dd16ed3a5
+Subproject a05e63ba72411977f5087c27c1564c9287bfab6
diff --git a/vim/plugged/vim-snippets b/vim/plugged/vim-snippets
-Subproject 9a7f3968c92c6589d3a12aa5448e8374c8d68a4
+Subproject c7e61b73a546c9dd0525cd158cc1613bb48e414
diff --git a/vim/plugged/vim-surround b/vim/plugged/vim-surround
-Subproject bf3480dc9ae7bea34c78fbba4c65b4548b5b1fe
+Subproject 3d188ed2113431cf8dac77be61b842acb64433d
diff --git a/vim/plugged/vim-test b/vim/plugged/vim-test
-Subproject e7150de777ef0c81a015972e4feb56c4b3137ef
+Subproject c63b94c1e5089807f4532e05f087351ddb5a207
diff --git a/vim/plugged/vim-unimpaired b/vim/plugged/vim-unimpaired
-Subproject efdc6475f7ea789346716dabf9900ac04ee8604
+Subproject 6d44a6dc2ec34607c41ec78acf81657248580bf
diff --git a/vim/vimrc b/vim/vimrc
index b34edc9..fe7d05b 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -122,7 +122,9 @@ set equalalways
set showmode
set nobackup
set listchars=tab:»→,trail:␣
-set grepprg=/usr/bin/ag
+if executable('rg')
+ set grepprg=rg\ --color=never\ --vimgrep
+endif
" i don't bother with folding, but it's here if i need it.
if has('folding')
@@ -422,6 +424,17 @@ let g:fzf_colors =
imap <C-x><C-f> <plug>(fzf-complete-file-ag)
imap <C-x><C-l> <plug>(fzf-complete-line)
+" ghetto note system
+" Go to index of notes
+nnoremap <leader>ni :e ~/Documents/Notes/index.md<CR>:cd ~/Documents/Notes<CR>
+" Depends on grepprg being set to rg
+command! -nargs=1 Ngrep grep "<args>" -g "*.md" ~/Documents/Notes
+nnoremap <leader>nn :Ngrep
+
+" open quicklist vertical
+command! Vlist botright vertical copen | vertical resize 50
+nnoremap <leader>v :Vlist<CR>
+
" Search with ripgrep
command! -bang -nargs=* Rg
\ call fzf#vim#grep(