dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 12372825e95f3160e44a3db2ed594ff114202a08
parent f58694a5ea22cb8887fa9fb668af7357f584a98d
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Mon, 22 Nov 2021 19:12:24 +0100

vim: I don't actually use Dokumentary

Diffstat:
Mvim/vimrc | 9++-------
1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/vim/vimrc b/vim/vimrc @@ -71,9 +71,6 @@ Plug 'lervag/vimtex' " Snippets Plug 'SirVer/ultisnips' -" Improve K -Plug 'gastonsimone/vim-dokumentary' - " Fuzzy finder in vim Plug 'junegunn/fzf', { 'dir': '$HOME/.dotfiles/tools/fzf', 'do': './install --all --xdg --no-fish'} Plug 'junegunn/fzf.vim' @@ -278,9 +275,6 @@ cabbrev USE UltiSnipsEdit " Complete ultisnips with <C-x><C-u>, which is coincidentally the same mapping as user completion " (custom function btw) set completefunc=ultisnips_complete#ListSnippets -" Dokumentary {{{3 -" Improve what K does -let g:dokumentary_docprgs = {'ruby': 'ri {0} | col -b', 'c': ':Man {0}'} " Abolish {{{3 " Work with variants of words easily let g:abolish_save_file = '"$HOME"/.dotfiles/vim/abolish_save_file.vim' @@ -428,7 +422,8 @@ let g:repl_config = { \ 'javascript': { 'cmd': 'node' }, \ 'ruby': { 'cmd': 'irb', 'load_file': 'load "%s"' }, \ 'r': { 'cmd': 'R' }, - \ 'java': {'cmd': 'jshell' } + \ 'java': {'cmd': 'jshell' }, + \ 'sh': {'cmd': 'sh' } \ } nnoremap gzr :Repl<CR> " Medieval {{{3