dotfiles/zsh/modules/custom
2018-04-05 13:06:54 +02:00
..
functions Fixed vim and zsh 2018-04-05 13:06:54 +02:00
init.zsh Fixed vim and zsh 2018-04-05 13:06:54 +02:00
init.zsh.zwc Fixed vim and zsh 2018-04-05 13:06:54 +02:00
README.md Fixed vim and zsh 2018-04-05 13:06:54 +02:00

Custom

Add any custom aliases/settings to the init.zsh file.

Any functions should go in the functions folder, where the name of the file is the name of the function.

For example, this function from your .zshrc:

foo() {
  print 'bar'
}

becomes a file named 'foo' in the functions folder containing:

print 'bar'