My dot files managed by ChezMoi (https://github.com/twpayne/chezmoi)
Find a file
2025-03-31 07:30:45 +02:00
dot_bashrc.d Enhance bash function mbump 2024-09-04 05:14:10 +02:00
private_dot_config Add wonderful snacks.nvim 2025-02-11 13:29:50 +01:00
private_dot_local/bin Improve pyserver 2025-02-20 10:25:43 +01:00
.chezmoiignore add ignore file 2022-11-02 19:11:58 +01:00
dot_bashrc.tmpl Pull out starship eval from history 2024-09-20 11:31:54 +02:00
dot_dir_colors Nordish DIR_COLORS 2024-09-14 13:30:34 +02:00
dot_gitconfig.tmpl Update gitconfig 2025-01-30 08:34:20 +01:00
dot_tigrc set line-graphics = utf-8 2024-01-19 10:15:05 +01:00
dot_tmux.conf.tmpl change config reloading message 2025-03-24 07:32:43 +01:00
dot_vimrc Fish Shell config update 2023-04-29 18:23:03 +02:00
dot_zshrc.tmpl Disable buggy OMZH tmux plugin 2025-03-25 19:35:39 +01: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 Update README 2025-03-31 07:30:45 +02:00

My dot files managed by ChezMoi

Built around Bash and Zsh. 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"