My dot files managed by ChezMoi (https://github.com/twpayne/chezmoi)
Find a file
2024-09-20 11:31:54 +02:00
dot_bashrc.d Enhance bash function mbump 2024-09-04 05:14:10 +02:00
private_dot_config increase starship truncation length 2024-09-05 12:01:56 +02:00
private_dot_local/bin Add DELETE / PUT to HTTP debug server 2024-01-19 19:12:16 +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 Add git alias : git force 2024-05-21 07:45:33 +02:00
dot_tigrc set line-graphics = utf-8 2024-01-19 10:15:05 +01:00
dot_tmux.conf.tmpl Fix tmux/nvchad theming conflict under bash 2024-08-28 17:20:25 +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 Improve tmux auto-rename and cleanup Java alias 2024-01-26 09:10:02 +01: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]
  # 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"