Skip to content

zyhou/dotfiles

Repository files navigation

Maxime's dotfiles
catppuccin palette



You want to know more about my setup -> maximerichard.dev/setup.

Terminal and tools

As a theme, I love Catppuccin ❤️, the Latte and Mocha version. My font is the JetBrains Mono with Nerd fonts.

GTK Theme

Oh My Zsh Performance

In oh-my-zsh.sh file, inside the plugin loop, add a logger

# Load all of the plugins that were defined in ~/.zshrc
for plugin ($plugins); do
  timer=$(($(date +%s%N)/1000000))
  _omz_source "plugins/$plugin/$plugin.plugin.zsh"
  now=$(($(date +%s%N)/1000000))
  elapsed=$(($now-$timer))
  echo $elapsed":" $plugin
done
unset plugin

Git

Create a ~/.gitconfig.local file, and fill:

[user]
  name =
  email =
  signingkey =

Tips: It's possible to have a .gitconfig per directory

[includeIf "gitdir:~/bar/foo/"]
    path = ~/bar/foo/.gitconfig