mirror of
				https://github.com/KevinMidboe/chsh.git
				synced 2025-10-29 12:30:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			317 B
		
	
	
	
		
			Fish
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			317 B
		
	
	
	
		
			Fish
		
	
	
	
	
	
if status is-interactive
 | 
						|
    # Commands to run in interactive sessions can go here
 | 
						|
end
 | 
						|
 | 
						|
fenv source $HOME/.profile
 | 
						|
 | 
						|
# Common programs
 | 
						|
abbr -a -- vi nvim
 | 
						|
 | 
						|
# File exploring
 | 
						|
abbr -a -- l 'tree -L 1 -a'
 | 
						|
abbr -a -- ll 'tree -L 2 -a'
 | 
						|
 | 
						|
# Git (loaded from completions/git.fish)
 | 
						|
source $HOME/.config/fish/completions/git.fish
 |