- color scheme
- dracula - https://draculatheme.com/
- tmux
- terminal
- vim
- using plug (vim), tpm (tmux), and a json file for windows terminal
- dracula - https://draculatheme.com/
- terminal
- i use bash, you can use zsh, its all mostly applicable
- fuzzy learning cd: https://github.com/rupa/z
- z proj, takes you to /some/deep/directory/project
View bash_test_example.go
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
func TestNoProjects(t *testing.T) { | |
db := Setup(t) | |
pr := &GormProjectRepository{DB: db} | |
// Don't add any projects | |
// Test | |
allProjects := GetProjects(pr) | |
if len(allProjects) > 0 { | |
t.Errorf("Shouldn't have any projects, but got: %+v\n", allProjects) |
View mini_init.vim
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
" Minimal vim config | |
" ============================================================================= | |
filetype plugin indent on | |
" ============================================================================= | |
" = Plugin Manager = | |
" ============================================================================= | |
" Use any plugin manager here |
View 1. README.md