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
Source: https://www.tecmint.com/use-vim-as-bash-ide-using-bash-support-in-linux/ | |
============================================================================================================ | |
Important !!! | |
formatting script = gg=G | |
============================================================================================================ | |
The following are key mappings for inserting statements (n – normal mode, i – insert mode): |
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
# | |
# .bashrc online | |
# one cmd usage: | |
# source <(curl -s https://gist.githubusercontent.com/qins/2e1f5808ad68238168a01f64396e8aa8/raw) | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |