Fix minor issues and Add bat and exa aliases when possible
This commit is contained in:
		
							parent
							
								
									d10fa9410c
								
							
						
					
					
						commit
						414e581562
					
				
					 5 changed files with 15 additions and 8 deletions
				
			
		| 
						 | 
				
			
			@ -804,7 +804,7 @@ function! s:syntax()
 | 
			
		|||
  syn match plugNumber /[0-9]\+[0-9.]*/ contained
 | 
			
		||||
  syn match plugBracket /[[\]]/ contained
 | 
			
		||||
  syn match plugX /x/ contained
 | 
			
		||||
  syn match plugDash /^-/
 | 
			
		||||
  syn match plugDash /^-\{1}\ /
 | 
			
		||||
  syn match plugPlus /^+/
 | 
			
		||||
  syn match plugStar /^*/
 | 
			
		||||
  syn match plugMessage /\(^- \)\@<=.*/
 | 
			
		||||
| 
						 | 
				
			
			@ -822,6 +822,7 @@ function! s:syntax()
 | 
			
		|||
  syn match plugError /^x.*/
 | 
			
		||||
  syn region plugDeleted start=/^\~ .*/ end=/^\ze\S/
 | 
			
		||||
  syn match plugH2 /^.*:\n-\+$/
 | 
			
		||||
  syn match plugH2 /^-\{2,}/
 | 
			
		||||
  syn keyword Function PlugInstall PlugStatus PlugUpdate PlugClean
 | 
			
		||||
  hi def link plug1       Title
 | 
			
		||||
  hi def link plug2       Repeat
 | 
			
		||||
| 
						 | 
				
			
			@ -1077,8 +1078,9 @@ function! s:checkout(spec)
 | 
			
		|||
  let sha = a:spec.commit
 | 
			
		||||
  let output = s:git_revision(a:spec.dir)
 | 
			
		||||
  if !empty(output) && !s:hash_match(sha, s:lines(output)[0])
 | 
			
		||||
    let credential_helper = s:git_version_requirement(2) ? '-c credential.helper= ' : ''
 | 
			
		||||
    let output = s:system(
 | 
			
		||||
          \ 'git fetch --depth 999999 && git checkout '.plug#shellescape(sha).' --', a:spec.dir)
 | 
			
		||||
          \ 'git '.credential_helper.'fetch --depth 999999 && git checkout '.plug#shellescape(sha).' --', a:spec.dir)
 | 
			
		||||
  endif
 | 
			
		||||
  return output
 | 
			
		||||
endfunction
 | 
			
		||||
| 
						 | 
				
			
			@ -1530,7 +1532,7 @@ while 1 " Without TCO, Vim stack is bound to explode
 | 
			
		|||
    let [error, _] = s:git_validate(spec, 0)
 | 
			
		||||
    if empty(error)
 | 
			
		||||
      if pull
 | 
			
		||||
        let cmd = ['git', 'fetch']
 | 
			
		||||
        let cmd = s:git_version_requirement(2) ? ['git', '-c', 'credential.helper=', 'fetch'] : ['git', 'fetch']
 | 
			
		||||
        if has_tag && !empty(globpath(spec.dir, '.git/shallow'))
 | 
			
		||||
          call extend(cmd, ['--depth', '99999999'])
 | 
			
		||||
        endif
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -19,6 +19,7 @@ call plug#begin('~/.config/vim/plugged')
 | 
			
		|||
    Plug 'posva/vim-vue'
 | 
			
		||||
    Plug 'vhdirk/vim-cmake'
 | 
			
		||||
    Plug 'lervag/vimtex'
 | 
			
		||||
    Plug 'fatih/vim-go'
 | 
			
		||||
call plug#end()
 | 
			
		||||
 | 
			
		||||
packadd termdebug
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue