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
" theme from github.com/crusoexia/vim-monokai | |
" manually installed plugins: | |
" - github.com/digitaltoad/vim-pug | |
" - github.com/slint-ui/vim-slint | |
" - github.com/hashivim/vim-terraform/ | |
" - github.com/yegappan/lsp | |
" | |
" - prettier globally | |
syntax on |
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
#!/usr/bin/env bash | |
# GIT FUNCTIONS | |
git_branch() { | |
git branch 2>/dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/[\1]/' | |
} | |
# TERMINAL PROMPT | |
# \[\e[7;37m\] 1-bold; 4-udrline; 5-blink; 7-inv; 30-blk 37-wht; | |
PS1="\[\e[1;37m\]\\$" | |
PS1+="\[\e[0;92m\]\u\[\e[m\] " # username |
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
alias kod="cd ~/Documents/code" | |
mdir(){ | |
mkdir -p -- "$1" && cd -P -- "$1" | |
} | |
alias diff='diff -u --color=auto' | |
alias dd="dd status=progress" |