Skip to content

Instantly share code, notes, and snippets.

View justanindieguy's full-sized avatar

Emmanuel Hernandez justanindieguy

View GitHub Profile
@justanindieguy
justanindieguy / user_profile.ps1
Created December 26, 2023 17:26
Powershell config
# Load prompt config
function Get-ScriptDirectory { Split-Path $MyInvocation.ScriptName }
# Icons
Import-Module -Name Terminal-Icons
# PSReadLine
Set-PSReadLineOption -EditMode Emacs
Set-PSReadLineOption -BellStyle None
Set-PSReadLineOption -PredictionSource History
@justanindieguy
justanindieguy / .mintimb.omp.json
Last active December 18, 2023 17:31
Oh My Posh Custom Theme
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"background": "p:yellow",
"foreground": "p:black",
"leading_diamond": "",
@justanindieguy
justanindieguy / init.vim
Last active September 12, 2023 16:27
Neovim configuration for VSCode Neovim extension
" Better Clipboard
set clipboard=unnamedplus
" Better Navigation
nnoremap <silent> <C-j> :call VSCodeNotify('workbench.action.navigateDown')<CR>
xnoremap <silent> <C-j> :call VSCodeNotify('workbench.action.navigateDown')<CR>
nnoremap <silent> <C-k> :call VSCodeNotify('workbench.action.navigateUp')<CR>
xnoremap <silent> <C-k> :call VSCodeNotify('workbench.action.navigateUp')<CR>
nnoremap <silent> <C-h> :call VSCodeNotify('workbench.action.navigateLeft')<CR>
xnoremap <silent> <C-h> :call VSCodeNotify('workbench.action.navigateLeft')<CR>
@justanindieguy
justanindieguy / Kanagawa.theme
Created August 21, 2023 16:29
Kanagawa theme for Fish Shell
fish_color_autosuggestion 727169
fish_color_cancel --reverse
fish_color_command 7AA89F
fish_color_comment 727169
fish_color_cwd green
fish_color_cwd_root red
fish_color_end FF9E64
fish_color_error C34043
fish_color_escape D27E99
fish_color_history_current --bold
@justanindieguy
justanindieguy / .gitconfig
Last active August 27, 2022 19:03
Git Config WSL
[user]
email = calcetin.izquierdo@gmail.com
name = Emmanuel Hernandez
[diff]
tool = vscode
[difftool "vscode"]
cmd = code --wait --diff $LOCAL $REMOTE
[merge]
tool = vscode
[mergetool "vscode"]
@justanindieguy
justanindieguy / .blazer.omp.json
Created June 14, 2022 15:52
Oh My Posh Custom Theme
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"background": "#FAA307",
"foreground": "#000000",
"leading_diamond": "\ue0b6",
@justanindieguy
justanindieguy / settings.json
Created June 12, 2022 19:00
Windows Terminal config
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions":
[
{
"command": "paste",
"keys": "ctrl+v"
},
{