49 lines
1.6 KiB
Text
49 lines
1.6 KiB
Text
" plugins: airline
|
|
let g:bufferline_echo = 0
|
|
let g:airline_powerline_fonts = 1
|
|
let g:airline#extensions#tabline#enabled = 1
|
|
|
|
au BufWrite * :Autoformat
|
|
|
|
" plugins: rust
|
|
let g:rustfmt_autosave = 1
|
|
|
|
" searching
|
|
let $FZF_DEFAULT_COMMAND = 'rga --files --no-messages "" .'
|
|
set grepprg=rga\ --vimgrep
|
|
let g:fzf_command_prefix = 'Fzf'
|
|
command! -bang -nargs=* Find call fzf#vim#grep('rga --column --line-number --no-heading --fixed-strings --ignore-case --no-ignore --hidden --follow --glob "!.git/*" --color "always" '.shellescape(<q-args>), 1, <bang>0)
|
|
let g:ctrlp_show_hidden = 1
|
|
let g:ctrlp_user_command = 'rga %s --files --hidden --color=never --glob ""'
|
|
|
|
" nerdtree startup
|
|
autocmd StdinReadPre * let s:std_in=1
|
|
autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | endif
|
|
|
|
" rainbow
|
|
let g:rainbow_active = 1
|
|
|
|
" coc
|
|
set shortmess+=c
|
|
set signcolumn=yes
|
|
|
|
autocmd CursorHold * silent call CocActionAsync('highlight')
|
|
|
|
augroup mygroup
|
|
autocmd!
|
|
" Setup formatexpr specified filetype(s).
|
|
autocmd FileType typescript,json setl formatexpr=CocAction('formatSelected')
|
|
" Update signature help on jump placeholder.
|
|
autocmd User CocJumpPlaceholder call CocActionAsync('showSignatureHelp')
|
|
augroup end
|
|
|
|
command! -nargs=0 Format :call CocAction('format')
|
|
command! -nargs=? Fold :call CocAction('fold', <f-args>)
|
|
command! -nargs=0 OR :call CocAction('runCommand', 'editor.action.organizeImport')
|
|
|
|
set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')}
|
|
|
|
" ack
|
|
let g:ackprg = 'rg --vimgrep --smart-case'
|
|
let g:ack_autoclose = 1
|
|
let g:ack_use_cword_for_empty_search = 1
|