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 3436a54aee README 2 years ago
dot_bashrc.d remove default env file value. Nothing of interest 2 years ago
private_dot_config replace Atuin with McFly 2 years ago
private_dot_local/bin Add deploy java archives 2 years ago
.chezmoiignore add ignore file 2 years ago
README.md README 2 years ago
dot_bashrc.tmpl customize hishtory displayed columns 2 years ago
dot_gitconfig.tmpl fancy diff with https://github.com/so-fancy/diff-so-fancy 2 years ago
dot_tigrc binding to copy commit id 3 years ago
dot_tmux.conf Add one more shortcut 2 years ago
dot_vimrc use Nort theme 3 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

  • 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"