Compare commits
	
		
			8 Commits
		
	
	
		
			526e6cae26
			...
			master
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 5f8997f418 | |||
| 693d20f2cf | |||
| db981696b6 | |||
| 594a212ebc | |||
| 8fef2338eb | |||
| ea9139f77f | |||
| 15a56af2c8 | |||
| a56929aa8b | 
@@ -1,5 +1,7 @@
 | 
				
			|||||||
alias cdrepo='cd ~/Repositories/'
 | 
					alias cdrepo='cd ~/Repositories/'
 | 
				
			||||||
alias cdgitlab='cd ~/Repositories/Gitlab'
 | 
					 | 
				
			||||||
alias cdgithub='cd ~/Repositories/Github'
 | 
					alias cdgithub='cd ~/Repositories/Github'
 | 
				
			||||||
alias cdgl=cdgitlab
 | 
					alias cdgitlab='cd ~/Repositories/Gitlab'
 | 
				
			||||||
 | 
					alias cdgitea='cd ~/Repositories/Gitea'
 | 
				
			||||||
alias cdgh=cdgithub
 | 
					alias cdgh=cdgithub
 | 
				
			||||||
 | 
					alias cdgl=cdgitlab
 | 
				
			||||||
 | 
					alias cdgt=cdgitea
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										7
									
								
								aliases.d/kitty
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								aliases.d/kitty
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
				
			|||||||
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# [ "$TERM" = "xterm-kitty" ] && alias ssh="kitty +kitten ssh"
 | 
				
			||||||
 | 
					if [ -n "${KITTY_INSTALLATION_DIR}" ]; then
 | 
				
			||||||
 | 
					  alias ssh="kitty +kitten ssh"
 | 
				
			||||||
 | 
					  alias icat="kitty +kitten icat"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
@@ -1,4 +1,3 @@
 | 
				
			|||||||
 | 
					 | 
				
			||||||
#!/bin/bash
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if (command -v flux &>/dev/null); then
 | 
					if (command -v flux &>/dev/null); then
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										5
									
								
								completion.d/tea
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								completion.d/tea
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
				
			|||||||
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if (command -v tea &>/dev/null); then
 | 
				
			||||||
 | 
						source <(tea completion bash)
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
							
								
								
									
										56
									
								
								rc.d/fzf
									
									
									
									
									
								
							
							
						
						
									
										56
									
								
								rc.d/fzf
									
									
									
									
									
								
							@@ -4,28 +4,44 @@ if (command -v fzf &>/dev/null); then
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  source <(fzf --bash)
 | 
					  source <(fzf --bash)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  # Selection de fichiers
 | 
					 | 
				
			||||||
  export FZF_CTRL_T_OPTS="--height 60% \
 | 
					 | 
				
			||||||
--border sharp \
 | 
					 | 
				
			||||||
--layout reverse \
 | 
					 | 
				
			||||||
--prompt ' ' \
 | 
					 | 
				
			||||||
--pointer ❯ \
 | 
					 | 
				
			||||||
--marker ✔"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  # Navigation vers un répertoire
 | 
					  # Navigation vers un répertoire
 | 
				
			||||||
  export FZF_ALT_C_OPTS="--height 60% \
 | 
					  FZF_ALT_C_OPTS="$(
 | 
				
			||||||
--border sharp \
 | 
					    cat <<'EOF'
 | 
				
			||||||
--layout reverse \
 | 
					      --height 60%
 | 
				
			||||||
--prompt ' ' \
 | 
					      --border sharp
 | 
				
			||||||
--pointer ❯ \
 | 
					      --layout reverse
 | 
				
			||||||
--marker ✔"
 | 
					      --prompt ' '
 | 
				
			||||||
 | 
					      --pointer ❯
 | 
				
			||||||
 | 
					      --marker ✔
 | 
				
			||||||
 | 
					EOF
 | 
				
			||||||
 | 
					  )"
 | 
				
			||||||
 | 
					  export FZF_ALT_C_OPTS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  # Selection de fichiers
 | 
				
			||||||
 | 
					  FZF_CTRL_T_OPTS="$(
 | 
				
			||||||
 | 
					    cat <<'EOF'
 | 
				
			||||||
 | 
					      --height 60%
 | 
				
			||||||
 | 
					      --border sharp
 | 
				
			||||||
 | 
					      --layout reverse
 | 
				
			||||||
 | 
					      --prompt ' '
 | 
				
			||||||
 | 
					      --pointer ❯
 | 
				
			||||||
 | 
					      --marker ✔
 | 
				
			||||||
 | 
					      --preview="bat --color=always --style=-header {}"
 | 
				
			||||||
 | 
					EOF
 | 
				
			||||||
 | 
					  )"
 | 
				
			||||||
 | 
					  export FZF_CTRL_T_OPTS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  # Navigation dans l'historique
 | 
					  # Navigation dans l'historique
 | 
				
			||||||
  export FZF_CTRL_R_OPTS="--height 60% \
 | 
					  FZF_CTRL_R_OPTS="$(
 | 
				
			||||||
--border sharp \
 | 
					    cat <<'EOF'
 | 
				
			||||||
--layout reverse \
 | 
					      --height 60%
 | 
				
			||||||
--prompt ' ' \
 | 
					      --border sharp
 | 
				
			||||||
--pointer ❯ \
 | 
					      --layout reverse
 | 
				
			||||||
--marker ✔"
 | 
					      --prompt ' '
 | 
				
			||||||
 | 
					      --pointer ❯
 | 
				
			||||||
 | 
					      --marker ✔
 | 
				
			||||||
 | 
					EOF
 | 
				
			||||||
 | 
					  )"
 | 
				
			||||||
 | 
					  export FZF_CTRL_R_OPTS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user