diff --git a/zsh/.config/oh-my-zsh/custom/archlinux.zsh b/zsh/.config/oh-my-zsh/custom/archlinux.zsh index 4736178..80e2a06 100644 --- a/zsh/.config/oh-my-zsh/custom/archlinux.zsh +++ b/zsh/.config/oh-my-zsh/custom/archlinux.zsh @@ -1,3 +1,4 @@ +# todo: similar aliases for yay # pacaur aliases if (( $+commands[pacaur] )); then alias paupg='pacaur -Syua' diff --git a/zsh/.config/oh-my-zsh/custom/npm.zsh b/zsh/.config/oh-my-zsh/custom/npm.zsh index d3839c3..4fb6e50 100644 --- a/zsh/.config/oh-my-zsh/custom/npm.zsh +++ b/zsh/.config/oh-my-zsh/custom/npm.zsh @@ -12,6 +12,3 @@ PATH="$NPM_CONFIG_PREFIX/bin:$PATH" # Unset manpath so we can inherit from /etc/manpath via the `manpath` command unset MANPATH # delete if you already modified MANPATH elsewhere in your config export MANPATH="$NPM_CONFIG_PREFIX/share/man:$(manpath)" - -alias npm_list_globals='npm list -g --depth=0' -alias npm_list_outdated_globals='npm outdated -g --depth=0' diff --git a/zsh/.config/oh-my-zsh/custom/web-search.zsh b/zsh/.config/oh-my-zsh/custom/web-search.zsh deleted file mode 100644 index cc970e5..0000000 --- a/zsh/.config/oh-my-zsh/custom/web-search.zsh +++ /dev/null @@ -1,59 +0,0 @@ -# web_search from terminal - -function web_search() { - emulate -L zsh - - # define search engine URLS - typeset -A urls - urls=( - google "https://www.google.com/search?q=" - bing "https://www.bing.com/search?q=" - yahoo "https://search.yahoo.com/search?p=" - duckduckgo "https://www.duckduckgo.com/?q=" - startpage "https://www.startpage.com/do/search?q=" - yandex "https://yandex.ru/yandsearch?text=" - github "https://github.com/search?q=" - baidu "https://www.baidu.com/s?wd=" - ecosia "https://www.ecosia.org/search?q=" - goodreads "https://www.goodreads.com/search?q=" - ) - - # check whether the search engine is supported - if [[ -z "$urls[$1]" ]]; then - echo "Search engine $1 not supported." - return 1 - fi - - # search or go to main page depending on number of arguments passed - if [[ $# -gt 1 ]]; then - # build search url: - # join arguments passed with '+', then append to search engine URL - url="${urls[$1]}${(j:+:)@[2,-1]}" - else - # build main page url: - # split by '/', then rejoin protocol (1) and domain (2) parts with '//' - url="${(j://:)${(s:/:)urls[$1]}[1,2]}" - fi - - open_command "$url" -} - - -alias bing='web_search bing' -alias google='web_search google' -alias yahoo='web_search yahoo' -alias ddg='web_search duckduckgo' -alias sp='web_search startpage' -alias yandex='web_search yandex' -alias github='web_search github' -alias baidu='web_search baidu' -alias ecosia='web_search ecosia' -alias goodreads='web_search goodreads' - -#add your own !bang searches here -alias wiki='web_search duckduckgo \!w' -alias news='web_search duckduckgo \!n' -alias youtube='web_search duckduckgo \!yt' -alias map='web_search duckduckgo \!m' -alias image='web_search duckduckgo \!i' -alias ducky='web_search duckduckgo \!' diff --git a/zsh/.zshrc b/zsh/.zshrc index 0efa8cc..ccd3ce9 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -10,10 +10,9 @@ export ZSH_CUSTOM=$XDG_CONFIG_HOME/oh-my-zsh/custom if [[ ! -d $ZSH_CACHE_DIR ]]; then mkdir -p $ZSH_CACHE_DIR fi -# Custom plugins if [[ ! -d $ZSH_CUSTOM ]]; then mkdir -p $ZSH_CUSTOM - fi +fi # disable automatic updates DISABLE_AUTO_UPDATE=true