You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
980 B
Markdown

2 years ago
# dotfiles
My dot files managed by ChezMoi (https://github.com/twpayne/chezmoi)
2 years ago
2 years ago
Friend tools:
2 years ago
- bash
- tmux, tmuxp, tpm
- tig, git
2 years ago
- starship
2 years ago
- vim or neovim, vundle
- python
- perl
2 years ago
- sdkman
2 years ago
- fzf
2 years ago
2 years ago
Configuration file *~/config/chezmoi/chezmoi.toml*
```toml
[data]
2 years ago
# git configuration
2 years ago
git_email = ""
git_alias = ""
2 years ago
# fzf search path for "p" command
projectdir = "~/work"
# deployment java path for "d" command
deploydir = "~/dist"
# Java versions from sdkman
java6_version = "6.0.119-zulu"
java7_version = "7.0.342-zulu"
java8_version = "8.0.302-open"
java11_version = "11.0.12-open"
# extra certificate for NodeJs (PEM file) to trust HTTPS proxy
extra_ca_cert = "/home/yannic/config/security/ca-node.pem"
# Java truststore for Maven to trust HTTPS proxy
java_truststore_file = "/home/yannic/config/security/snef-security.jks"
java_truststore_password = "secret"
# docker compose bin
2 years ago
docker_compose_command = "/usr/bin/docker compose"
```