diff options
author | Shubham Saini <shubham6405@gmail.com> | 2020-03-24 12:23:17 +0000 |
---|---|---|
committer | Shubham Saini <shubham6405@gmail.com> | 2020-03-24 12:23:17 +0000 |
commit | 064fb93965974ed826a7e9cdf854e9c5ec935342 (patch) | |
tree | 75789e39783d7def078085b96d71d55e20555cbd /zsh | |
parent | afb012025a944617e912c20e98190f8538d78262 (diff) |
gentooman
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 26 |
1 files changed, 4 insertions, 22 deletions
@@ -13,7 +13,7 @@ export XDG_CURRENT_DESKTOP=bspwm | |||
13 | # load a random theme each time oh-my-zsh is loaded, in which case, | 13 | # load a random theme each time oh-my-zsh is loaded, in which case, |
14 | # to know which specific one was loaded, run: echo $RANDOM_THEME | 14 | # to know which specific one was loaded, run: echo $RANDOM_THEME |
15 | # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | 15 | # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes |
16 | ZSH_THEME="mh" | 16 | ZSH_THEME="half-life" |
17 | 17 | ||
18 | # Set list of themes to pick from when loading at random | 18 | # Set list of themes to pick from when loading at random |
19 | # Setting this variable when ZSH_THEME=random will cause zsh to load | 19 | # Setting this variable when ZSH_THEME=random will cause zsh to load |
@@ -73,7 +73,7 @@ ZSH_THEME="mh" | |||
73 | # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | 73 | # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ |
74 | # Example format: plugins=(rails git textmate ruby lighthouse) | 74 | # Example format: plugins=(rails git textmate ruby lighthouse) |
75 | # Add wisely, as too many plugins slow down shell startup. | 75 | # Add wisely, as too many plugins slow down shell startup. |
76 | plugins=(git sudo archlinux extract python common-aliases autojump fzf) | 76 | plugins=(git sudo extract python common-aliases) |
77 | 77 | ||
78 | source $ZSH/oh-my-zsh.sh | 78 | source $ZSH/oh-my-zsh.sh |
79 | 79 | ||
@@ -105,36 +105,18 @@ source $ZSH/oh-my-zsh.sh | |||
105 | alias key="vim $HOME/.config/sxhkd/sxhkdrc" | 105 | alias key="vim $HOME/.config/sxhkd/sxhkdrc" |
106 | alias wm="vim ~/.config/bspwm/bspwmrc" | 106 | alias wm="vim ~/.config/bspwm/bspwmrc" |
107 | alias f="ranger" | 107 | alias f="ranger" |
108 | alias bb="cat /proc/acpi/bbswitch" | ||
109 | alias nu="nmcli connection up " | 108 | alias nu="nmcli connection up " |
110 | alias nt="nmtui-connect" | ||
111 | alias nd="nmcli connection down " | ||
112 | alias pg="ping google.com" | ||
113 | alias weather="curl wttr.in" | 109 | alias weather="curl wttr.in" |
114 | alias py="/bin/python" | 110 | alias py="/bin/python" |
115 | alias py2="/bin/python2" | 111 | alias py2="/bin/python2" |
112 | alias pg="ping google.com" | ||
116 | alias pubip="curl ipinfo.io/ip" | 113 | alias pubip="curl ipinfo.io/ip" |
117 | alias mirror="sudo reflector --verbose --latest 5 --sort rate --save /etc/pacman.d/mirrorlist" | ||
118 | alias k="pkill " | 114 | alias k="pkill " |
119 | alias m="ncmpcpp" | 115 | alias m="ncmpcpp" |
120 | alias vimrc="vim $HOME/.config/nvim/init.vim" | 116 | alias vimrc="vim $HOME/.config/nvim/init.vim" |
121 | alias poly="vim $HOME/.config/polybar/config" | 117 | alias poly="vim $HOME/.config/polybar/config" |
122 | alias z="zathura" | ||
123 | alias v="/usr/bin/nvim" | 118 | alias v="/usr/bin/nvim" |
124 | alias vim="/usr/bin/nvim" | 119 | alias vim="/usr/bin/nvim" |
125 | alias sudo="sudo " | 120 | alias sudo="sudo " |
126 | 121 | ||
127 | source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh | 122 | source /usr/share/zsh/site-functions/zsh-syntax-highlighting.zsh |
128 | source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh | ||
129 | |||
130 | |||
131 | # Import colorscheme from 'wal' asynchronously | ||
132 | # & # Run the process in the background. | ||
133 | # ( ) # Hide shell job control messages. | ||
134 | #(cat ~/.cache/wal/sequences &) | ||
135 | |||
136 | # Alternative (blocks terminal for 0-3ms) | ||
137 | #cat ~/.cache/wal/sequences | ||
138 | |||
139 | # To add support for TTYs this line can be optionally added. | ||
140 | #source ~/.cache/wal/colors-tty.sh | ||