Personaliza tu terminal Git Bash
=============================
Quitar el " MINGW64 "
C:\Program Files\Git\etc\profile.d\
Editar el archivo git-prompt.sh
Hay muchas líneas para modificar pero la que nos interesa en este caso son las que muestran el “MINGW64”.
Para ello solo necesitamos ubicar las siguientes lineas y comentarlas.
13: #PS1="$PS1"'\n' # new line
16: #PS1="$PS1"'\[\033[35m\]' # change to purple
17: #PS1="$PS1"'$MSYSTEM ' # show MSYSTEM
Para Quitar el titulo de la ventana se tiene que editar la primera linea de los PS1 eliminando
12: PS1='\[\033]0;$TITLEPREFIX:$PWD\007\]' # set window title
y al reemplazar quedaría así:12: PS1='\[\033]0;GitBash \007\]' # set window titleAgregar despues del user@host<space>
PS1="$PS1"'\[\033[0m\]'
PS1="$PS1"':' # new line
Comentar new line
:35 #PS1="$PS1"':' # new line
#export PS1='\[\e[38;2;220;220;170m\]➔ \[\e[38;2;30;197;147m\]$(basename "$PWD") \[\e[0m\]'
#export PS1='\e[38;2;220;220;170m[\e[38;2;30;197;147m\u@\h\e[38;2;220;220;170m]\[\033[0m\]$\[\033[0m\] '
#export PS1='\e[38;2;30;197;147m\u\[\033[0m\]@\e[38;2;255;255;162m\h \[\033[0;37m\]$> '
#export PS1='[\e[38;2;30;197;147m\u@\h\[\033[0;37m\]]\[\033[0;96m\]$>\[\033[0m\] '
_____________________________________________________________________________
Configurar Ventana Gitbash
Ir a Opciones
en Texto -> Tipo Letra: MesloLGM Nerd Font, 12pt Idioma: es_ES Juego de Caracteres:CP850(OEM codepage)
en Ventana-> Columnas:101
Filas:23
_____________________________________________________________________________
Configurar Git-Bash a la nueva Terminal de Windows
Generar un GUID para Gitbash
$> [guid]::NewGuid()
Configurar GITBASH
Ir a Windows Terminal -> configuracion -> Settings.json
"centerOnLaunch": true, --> Centrar Terminal
{
"name" : "Git Bash",
"guid": "{54e286c6-07bf-4aa1-9d30-c83c95dd61e6}",
"hidden": false,
"name": "Git Bash",
"commandline": "C:/Program Files/Git/bin/bash.exe --login",
"icon": "C:/Program Files/Git/mingw64/share/git/git-for-windows.ico",
"startingDirectory":"%USERPROFILE%",
"opacity":97,
"padding" : "8,2, 8, 2",
"font":
{
"face": "MesloLGM Nerd Font",
"size": 12,
"weight": "Medium"
},
}
Establecer perfil predeterminado: el GitBash
Editar el GUID por el GitBash
"defaultProfile": "{c9e3dc61-d7c6-45f2-b929-68b9c69d7eb9}",
Agregar perfil para todas las terminales
"defaults":
{
// Put settings here that you want to apply to all profiles.
"useAcrylic":true,
"face": "MesloLGM Nerd Font",
//"fontFace":"Consolas",
"fontSize":12,
"cursorColor" : "#CFCFCF", o "FFCC00"
"cursorShape" : "bar",
"historySize" : 9001,
"padding" : "8, 2, 8, 2",
"opacity": 97,
"centerOnLaunch": true,
},
Tamaño de Terminal: colum 101 Filas:19
Tipo Fuente: MesloLGM Nerd Font o Cascadia Mono
Tamaño Fuente:12
Espesor Fuente:Seminegrita
No hay comentarios:
Publicar un comentario