-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
106 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Misc | ||
abbr bashrc 'nvim ~/.bashrc' | ||
abbr zshconfig 'nvim ~/.zshrc' | ||
abbr ohmyzsh 'nvim ~/.oh-my-zsh' | ||
abbr vimrc "nvim ~/.vimrc" | ||
abbr dotfiles "nvim $DOTFILES" | ||
abbr nvimconfg "nvim ~/nvim" | ||
|
||
abbr :q 'exit' | ||
abbr tree "exa -T" | ||
abbr todos "rg --column --line-number --ignore-case --color always -e '(TODO|FIXME)'" | ||
|
||
abbr oss "~/OSS" | ||
abbr workspace "~/workspace" | ||
|
||
# git | ||
abbr g "git"; | ||
abbr glg "git log --graph --decorate --oneline --abbrev-commit"; | ||
abbr ggpush "git push origin HEAD"; | ||
abbr gd "git diff"; | ||
abbr gc "git commit -s"; | ||
abbr gca "git commit -sa"; | ||
abbr gco "git checkout"; | ||
abbr gb "git branch -v"; | ||
abbr ga "git add"; | ||
abbr gaa "git add -A"; | ||
abbr gcm "git commit -sm"; | ||
abbr gcam "git commit -sam"; | ||
abbr gst "git status -sb"; | ||
abbr glnext "git log --oneline (git describe --tags --abbrev0 @^)..@"; | ||
|
||
# Kubernetes | ||
abbr k "kubectl" | ||
abbr kn "kubens" | ||
abbr kx "kubectx" | ||
|
||
# Elixir | ||
abbr m "mix" | ||
abbr mt "mix test" | ||
abbr mc "mix compile" | ||
abbr mf "mix format" | ||
abbr md "mix deps.get" | ||
abbr mdc "mix deps.compile" | ||
abbr mps "mix phx.server" | ||
abbr mpn "mix phx.new" | ||
abbr mec "mix ecto.create" | ||
abbr mec "mix ecto.migrate" | ||
abbr megm "mix ecto.gen.migration" | ||
abbr i "iex" | ||
abbr ism "iex -S mix" | ||
abbr ips "iex -S mix phx.server" | ||
|
||
# Docker | ||
abbr d "docker" | ||
abbr dc "docker compose" | ||
|
||
abbr h "history | fzf" | ||
abbr tw "tmux-windowizer" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
set -U fish_greeting | ||
|
||
set -gx EDITOR nvim | ||
set -gx TERMINAL wezterm | ||
set -gx BROWSER firefox | ||
set -gx TERM xterm-256color | ||
|
||
fish_add_path -p \ | ||
$HOME/.mix/escripts \ | ||
$HOME/.local/bin \ | ||
$GOPATH/bin \ | ||
$HOME/.mix \ | ||
$HOME/.cargo/bin | ||
|
||
set -x GOPATH $HOME/go | ||
set -x GO111MODULE on | ||
set -x FZF_DEFAULT_COMMAND "fd --type f --hidden --follow --exclude .git" | ||
set -x DOTFILES $HOME/.dotfiles | ||
set -x NVIMCONF $HOME/nvim-config | ||
|
||
# Aliases | ||
source $HOME/.config/fish/abbr.fish | ||
|
||
starship init fish | source |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
jorgebucaran/fisher | ||
patrickf1/fzf.fish | ||
jethrokuan/z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
add_newline = false | ||
|
||
[line_break] | ||
disabled = true | ||
disabled = false | ||
|
||
[directory] | ||
truncate_to_repo = false | ||
|
||
[character] | ||
success_symbol = '[](green) ' | ||
error_symbol = '[](bold red) ' | ||
success_symbol = '[⟩](green) ' | ||
error_symbol = '[⟩](bold red) ' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.