My dot files managed by ChezMoi (https://github.com/twpayne/chezmoi)
Find a file
2024-01-19 10:15:05 +01:00
dot_bashrc.d add mbump to bump maven version 2023-04-27 15:20:03 +02:00
private_dot_config Update fish plugins 2023-12-16 17:26:31 +01:00
private_dot_local/bin Add pyserver logging to file (/tmp/pyserver.log) 2023-12-13 11:14:18 +01: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 cleanup and sort Git configuration 2023-08-22 15:02:11 +02:00
dot_tigrc set line-graphics = utf-8 2024-01-19 10:15:05 +01:00
dot_tmux.conf Override alacritty term config 2023-12-16 17:50:07 +01: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 Move to env specific config to custom.fish 2023-05-26 07:57:19 +02:00

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]
  # git configuration
  git_email = ""
  git_alias = ""
  # fzf search path for "p" command
  projectdir = "~/work"
  # deployment path for "d" command (java deploy)
  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"
  java20_version = "20-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"
  # 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"