1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 17:05:10 +01:00

Compare commits

...

2 Commits

3
.vimrc
View File

@@ -169,7 +169,7 @@ command! -bang -nargs=* Find call fzf#vim#grep('rg --column --line-number --no-h
" https://sidneyliebrand.io/blog/how-fzf-and-ripgrep-improved-my-workflow " https://sidneyliebrand.io/blog/how-fzf-and-ripgrep-improved-my-workflow
command! -bang -nargs=* Rg command! -bang -nargs=* Rg
\ call fzf#vim#grep( \ call fzf#vim#grep(
\ 'rg --column --line-number --hidden --smart-case --no-heading --color=always '.shellescape(<q-args>), 1, \ 'rg --column --line-number --smart-case --no-heading --color=always '.shellescape(<q-args>), 1,
\ <bang>0 ? fzf#vim#with_preview({'options': '--delimiter : --nth 4..'}, 'up:60%') \ <bang>0 ? fzf#vim#with_preview({'options': '--delimiter : --nth 4..'}, 'up:60%')
\ : fzf#vim#with_preview({'options': '--delimiter : --nth 4..'}, 'right:50%:hidden', '?'), \ : fzf#vim#with_preview({'options': '--delimiter : --nth 4..'}, 'right:50%:hidden', '?'),
\ <bang>0) \ <bang>0)
@@ -397,6 +397,7 @@ let g:vim_markdown_folding_disabled = 1
set nofoldenable set nofoldenable
let g:vim_markdown_conceal = 0 let g:vim_markdown_conceal = 0
let g:vim_markdown_conceal_code_blocks = 0 let g:vim_markdown_conceal_code_blocks = 0
let g:vim_markdown_new_list_item_indent = 2
Plug 'godlygeek/tabular' Plug 'godlygeek/tabular'
Plug 'plasticboy/vim-markdown' Plug 'plasticboy/vim-markdown'
" Use filetype name as fenced code block languages for syntax highlighting " Use filetype name as fenced code block languages for syntax highlighting