My dot files managed by ChezMoi (https://github.com/twpayne/chezmoi)
Find a file
2023-04-29 18:23:03 +02:00
dot_bashrc.d add mbump to bump maven version 2023-04-27 15:20:03 +02:00
private_dot_config Fish Shell config update 2023-04-29 18:23:03 +02:00
private_dot_local/bin Add Python debug HTTP server 2023-04-18 11:34:22 +02:00
.chezmoiignore add ignore file 2022-11-02 19:11:58 +01:00
dot_bashrc.tmpl Nop 2023-04-17 09:26:10 +02:00
dot_gitconfig.tmpl fancy diff with https://github.com/so-fancy/diff-so-fancy 2022-09-06 08:10:34 +02:00
dot_tigrc binding to copy commit id 2022-03-29 12:09:46 +02:00
dot_tmux.conf Add one more shortcut 2022-07-04 11:02:56 +02:00
dot_vimrc Fish Shell config update 2023-04-29 18:23:03 +02:00
executable_dot_fzf-completion.bash add bashrc extensions 2021-05-11 11:52:49 +02:00
executable_dot_fzf-keybindings.bash add bashrc extensions 2021-05-11 11:52:49 +02:00
README.md README 2022-11-13 17:58:21 +01:00

My dot files managed by ChezMoi

Built around Bash. Most supervitamined replacements stay optional.

My friend programs

  • shell : 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: vim or neovim, vundle
  • languages: python, perl, java with sdkman

Configuration file

a sample file (located in ~/config/chezmoi/chezmoi.toml)

[data]
  # git configuration
  git_email = ""
  git_alias = ""
  # 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 = "~/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"