mirror of
				https://github.com/mitchell/dotfiles.git
				synced 2025-11-03 21:25:26 +00:00 
			
		
		
		
	Fish: - Call ssh_agent_startup everytime (has its own conditions) - Add Bun and pnpm bin folders to PATH and aliases - Change additions to path to use fish_add_path - Set LIBVA_DRIVER_NAME to nvidia Neovim: - Format init.lua - Add Vue language server - Change Noice config Vim: - Remove eslint and stylelint as fixers - Add Vue linting/fixing - Use wombat theme for lightline (gruvbox gone?) - Add Lua & Markdown formatting - Update vim-plug Git: - Remove --date-order from 'git lola' alias
		
			
				
	
	
		
			52 lines
		
	
	
		
			1,021 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1,021 B
		
	
	
	
		
			INI
		
	
	
	
	
	
[alias]
 | 
						|
  co = checkout
 | 
						|
  sco = restore --staged
 | 
						|
  br = branch
 | 
						|
  cm = commit
 | 
						|
  st = status
 | 
						|
  rb = rebase
 | 
						|
  pfwl = push --force-with-lease
 | 
						|
  llog = log --date=local
 | 
						|
  flog = log --pretty=fuller --decorate
 | 
						|
  lol = log --graph --decorate --oneline
 | 
						|
  lola = log --graph --decorate --oneline --all
 | 
						|
  blog = log origin/master... --left-right
 | 
						|
  ds = diff --staged
 | 
						|
  amend = commit --amend -C HEAD
 | 
						|
  fixup = commit --fixup
 | 
						|
  squash = commit --squash
 | 
						|
  unstage = reset HEAD
 | 
						|
  rum = rebase master@{u}
 | 
						|
  puff = pull --ff-only
 | 
						|
  merff = merge --ff-only
 | 
						|
  fa = fetch --all
 | 
						|
  pa = push --all
 | 
						|
 | 
						|
[core]
 | 
						|
  editor = nvim
 | 
						|
  pager = delta
 | 
						|
 | 
						|
[color]
 | 
						|
  ui = auto
 | 
						|
  branch = auto
 | 
						|
  interactive = auto
 | 
						|
  status = auto
 | 
						|
 | 
						|
[push]
 | 
						|
  default = simple
 | 
						|
 | 
						|
[pull]
 | 
						|
  rebase = true
 | 
						|
 | 
						|
[interactive]
 | 
						|
  diffFilter = delta --color-only
 | 
						|
 | 
						|
[delta]
 | 
						|
  features = side-by-side line-numbers decorations
 | 
						|
  whitespace-error-style = 22 reverse
 | 
						|
 | 
						|
[delta "decorations"]
 | 
						|
  commit-decoration-style = bold yellow box ul
 | 
						|
  file-style = bold yellow ul
 | 
						|
  file-decoration-style = none
 |