Skip to content

Instantly share code, notes, and snippets.

View JuanCSUCoder's full-sized avatar
📚
Learning

Juan Camilo Sánchez Urrego JuanCSUCoder

📚
Learning
View GitHub Profile
if status is-interactive
# Commands to run in interactive sessions can go here
neofetch
end
alias ls="exa -l --icons --git"
alias la="exa -la --icons --git"
alias tree="exa --tree --level=2 --icons --git"
alias cat="batcat"
@JuanCSUCoder
JuanCSUCoder / starship.toml
Last active July 8, 2025 22:27
FullStar Starship Shell Preset by @JuanCSUCoder
[aws]
symbol = " "
[buf]
symbol = " "
[bun]
symbol = " "
[c]
@JuanCSUCoder
JuanCSUCoder / .bashrc
Last active July 8, 2025 22:27 — forked from voidptr/.bashrc
Execute Fish Shell from Bash at end of .bashrc -- while being able to invoke Bash shell from fish without re-running Fish -- and without having to use --norc
### don't autostart fish if we alredy did it.
if [ -z "$STARTEDFISH" ];
then
export STARTEDFISH=1;
exec fish;
exit;
fi
eval "$(starship init bash)"

Keybase proof

I hereby claim:

  • I am juancsucoder on github.
  • I am juancsucoder (https://keybase.io/juancsucoder) on keybase.
  • I have a public key ASBKtinx9Qw-LK09ImcP1xqMbIKWnAYMVDjRw03ImgFYBAo

To claim this, I am signing this object:

@JuanCSUCoder
JuanCSUCoder / index.html
Created October 2, 2020 19:59 — forked from StickyCube/index.html
Electron click through transparency example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test App</title>
</head>
<style>
html, body {
height: 100%;