diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-10-25 13:21:37 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-10-25 13:21:37 +0400 |
| commit | d417ff1d366d1f435c1d6aa128bb368dfbdaf39a (patch) | |
| tree | 12e45dcb10dd482a9ec5bcabffcb1f33db50e959 /.config/zsh/.zshrc | |
| parent | 248a94df25205c334ec5097efd392393ab336258 (diff) | |
Changed colorscheme of terminal
- Changed colorscheme in alacritty to monokai
- Removed joplin config (org-mode is my new friend)
- Removed fzf plugin from kakoune config
- Added cdf function to zsh config
- Changed main browser to brave
Diffstat (limited to '.config/zsh/.zshrc')
| -rw-r--r-- | .config/zsh/.zshrc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index e4d366c..3001407 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -38,6 +38,10 @@ zstyle :compinstall filename '/home/andrew/.zshrc' autoload -Uz compinit compinit -d $XDG_CACHE_HOME/zsh/zcompdump +cdf() { + cd $(find ~ -type d &>/dev/null | fzf) +} + set_ps1() { # red color if current user us root, otherwise - green [ "$USER" = "root" ] && UCOLOR="%B%F{red}" || UCOLOR="%B%F{green}" |