diff --git a/README-MY-SETUP.md b/README-MY-SETUP.md index 253409ffb..5ccd4813d 100644 --- a/README-MY-SETUP.md +++ b/README-MY-SETUP.md @@ -117,4 +117,37 @@ Common Install Steps ln -s ~/.oh-my-zsh/templates/starship.toml ``` -* Start a terminal session \ No newline at end of file +* Start a terminal session + +Post install +------------ + +There are a few things that can make things even better + +* set up GIT configuration + * `cd && ln -s ~/.oh-my-zsh/plugins/gitconfig .gitconfig` + * create a `~/.gitconfig.user` for user-specific GIT settings + + ```(shell) + [user] + name = Fred Klassen + email = fred.klassen@broadcom.com + #email = fklassen@appneta.com + signingkey = 84E4FA215C934A7D97DC76D5E9E2149793BDE17E + ``` + +* create ~/.inputrc + + ```(shell) + set editing-mode vi + set bell-style none + ``` + +* install tmux config [Oh My Tmux](https://github.com/gpakosz/.tmux) +* install vim config [SpaceVim](https://spacevim.org/) +* install Mosh replacement [Eternal Terminal](https://eternalterminal.dev/) +* on macOS + * install macVIM via `brew install macvim` + * install some colour themes for iTerm2 that you can choose from + * [iTerm2 snazzy](https://github.com/sindresorhus/iterm2-snazzy) + * [GitHub VS Code Theme for iTerm](https://github.com/cdalvaro/github-vscode-theme-iterm) diff --git a/templates/inputrc b/templates/inputrc new file mode 100644 index 000000000..94acccd68 --- /dev/null +++ b/templates/inputrc @@ -0,0 +1,3 @@ +set editing-mode vi +set bell-style none + diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index 7f276dc74..aa59c3ea9 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -130,4 +130,5 @@ export MANPATH="/usr/local/man:/usr/local/ssl/share/man:$MANPATH" [ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh ZSH_ALIAS_FINDER_AUTOMATIC=true +# comment out if you want to disable Starship and use ZSH_THEME eval "$(starship init zsh)"