This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yml
50 lines (43 loc) · 1.5 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
ohmyzsh_update_zshrc: true
zsh_theme: powerlevel10k/powerlevel10k
zsh_custom_shell_command: "false"
# useful when users are bound to external systems (i.e. active directory)
# zsh_custom_shell_command: "true"
# zsh_default_shell_command: "/opt/pbis/bin/config LoginShellTemplate /usr/bin/zsh"
zsh_aliases:
# https://opensource.com/article/19/7/bash-aliases
- ls='ls -F'
- ll='ls -lh'
- mnt="mount | awk -F' ' '{ printf \"%s\t%s\n\",\$1,\$3; }' | column -t | egrep ^/dev/ | sort"
- hg='history|grep' # search bash history, I swapped the letters for github-cli compatibility
- left='ls -t -1' # most recently edited files
- cg='cd `git rev-parse --show-toplevel`' # go to git main level
- ga='git add -A'
- gc='git commit -m '
- gp='git push origin'
ohmyzsh_custom_plugins_folder: "~/.oh-my-zsh/custom/plugins"
ohmyzsh_custom_themes_folder: "~/.oh-my-zsh/custom/themes"
ohmyzsh_plugins: []
# Bundles from the default repo (robbyrussell's oh-my-zsh) only need a name
# https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins
#
# These are default plugins, so the list is simple
# it is required to just use the name, with hashes/dictionary-keys
# - ansible
# - aws
# - docker
# - docker-compose
# - pipenv
# etc.
ohmyzsh_custom_plugins:
# Syntax highlighting bundle.
- user: zdharma-continuum
repo: fast-syntax-highlighting
# Autosuggestions
- user: zsh-users
repo: zsh-autosuggestions
ohmyzsh_custom_themes:
- user: romkatv
repo: powerlevel10k
version: 'v1.17.0'