My dot files managed by ChezMoi (https://github.com/twpayne/chezmoi)
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.
 
 
Yax b4d6f0275b Add DELETE / PUT to HTTP debug server 9 months ago
dot_bashrc.d add mbump to bump maven version 2 years ago
private_dot_config Update fish plugins 10 months ago
private_dot_local/bin Add DELETE / PUT to HTTP debug server 9 months ago
.chezmoiignore add ignore file 2 years ago
README.md Move to env specific config to custom.fish 1 year ago
dot_bashrc.tmpl Nop 2 years ago
dot_gitconfig.tmpl cleanup and sort Git configuration 1 year ago
dot_tigrc set line-graphics = utf-8 9 months ago
dot_tmux.conf Override alacritty term config 10 months ago
dot_vimrc Fish Shell config update 2 years ago
executable_dot_fzf-completion.bash add bashrc extensions 4 years ago
executable_dot_fzf-keybindings.bash add bashrc extensions 4 years ago

README.md

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"