My dot files managed by ChezMoi (https://github.com/twpayne/chezmoi) 
				
			
		| dot_bashrc.d | ||
| private_dot_config | ||
| private_dot_local/bin | ||
| .chezmoiignore | ||
| dot_bashrc.tmpl | ||
| dot_dir_colors | ||
| dot_gitconfig.tmpl | ||
| dot_tigrc | ||
| dot_tmux.conf.tmpl | ||
| dot_vimrc | ||
| executable_dot_fzf-completion.bash | ||
| executable_dot_fzf-keybindings.bash | ||
| README.md | ||
My dot files managed by ChezMoi
Built around Bash. Most supervitamined replacements stay optional.
My friend programs
- fish shell, fisher plugin manager
- bash, starship super prompt, hishtory, ls exa
- terminal multiplexer: tmux, plugin manager tpm and session manager tmuxp
- a swiss-knife to make life easier: fzf
- git: configuration and the terminal manager tig
- vim: vundle
- languages: python, perl, java with sdkman
Configuration file
a sample file (located in ~/config/chezmoi/chezmoi.toml)
[data]
  # unix username
  username = ""
  # git configuration
  git_email = ""
  git_alias = ""
  # fzf search path for "p" command
  projectdir = "~/work"
  # deployment path for "d" command (java deploy)
  deploydir = "~/dist"
  # extra certificate for NodeJs (PEM file) to trust HTTPS proxy
  extra_ca_cert = "~/config/security/ca-node.pem"
  # Java truststore for Maven to trust HTTPS proxy
  java_truststore_file = "~/config/security/extra-truststore.jks"
  java_truststore_password = "secret"
  # docker compose bin
  docker_compose_command = "/usr/bin/docker compose"
  # tmux favorite shortcuts CTRL-ALT-1, CTRL-ALT-2, CTRL-ALT-3, CTRL-ALT-4
  tmux_favorite1 = "cd my_favorite_path"
  tmux_favorite2 = "sudo su"
  tmux_favorite3 = "myusualsshpassword"
  tmux_favorite4 = "export TERM=xterm"
