# Install zsh
$ sudo apt install zsh
$ zsh --version
zsh 5.8 (aarch64-unknown-linux-gnu)
# Set default shell to zsh
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
[merge] | |
tool = kdiff3 | |
[diff] | |
guitool = kdiff3 | |
[core] | |
editor = notepad | |
autocrlf = true | |
[user] | |
name = xxxx | |
email = [email protected] |
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
" Don't try to be vi compatible | |
set nocompatible | |
" Helps force plugins to load correctly when it is turned back on below | |
filetype off | |
" TODO: Load plugins here (pathogen or vundle) | |
" Turn on syntax highlighting | |
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
## Colors? Used for the prompt. | |
#Regular text color | |
BLACK='\[\e[0;30m\]' | |
#Bold text color | |
BBLACK='\[\e[1;30m\]' | |
#background color | |
BGBLACK='\[\e[40m\]' | |
RED='\[\e[0;31m\]' | |
BRED='\[\e[1;31m\]' | |
BGRED='\[\e[41m\]' |
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
[merge] | |
tool = kdiff3 | |
[diff] | |
guitool = kdiff3 | |
[core] | |
editor = notepad | |
autocrlf = true | |
[user] | |
name = username | |
email = [email protected] |
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
// Color customisation complemetry to monokai, and window colors | |
"workbench.colorCustomizations": { | |
"activityBar.inactiveForeground": "#f3fef252", | |
"diffEditor.insertedTextBackground": "#a6e22e2c", | |
"diffEditor.removedTextBackground": "#f926735d", | |
"editor.background": "#1c1d18", | |
}, | |
// VSCode window | |
"window.title": "${dirty}${rootName}$${separator}${activeEditorShort}", |
conda install asynctest mock pytest-asyncio pytest-cov pytest-mock pytest-xdist -y
python -m pytest <root_dir> --cov --cov-config .coveragerc --cov-report=lcov:lcov.info --cov-report=xml --cov-report=term-missing
- In VScode, test debugging won't work together with test coverage
- Suggestion: Setup VSCode for test debugging, and use command line for covrage run