ohmybash / oh-my-bash

A delightful community-driven framework for managing your bash configuration, and an auto-update tool so that makes it easy to keep up with the latest updates from the community.
https://ohmybash.github.io
MIT License
5.59k stars 628 forks source link

Support for plugins `bundler`, `osx`, `rake`, and `ruby` in OMZ #324

Open incrypto32 opened 2 years ago

incrypto32 commented 2 years ago
Screenshot 2022-04-04 at 8 22 48 AM

Here is the .bashrc

# Enable the subsequent settings only in interactive sessions
case $- in
  *i*) ;;
    *) return;;
esac

# Path to your oh-my-bash installation.
export OSH=/Users/krishna/.oh-my-bash

# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-bash is loaded.
OSH_THEME="font"

# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"

# Uncomment the following line to use hyphen-insensitive completion. Case
# sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"

# Uncomment the following line to disable bi-weekly auto-update checks.
# DISABLE_AUTO_UPDATE="true"

# Uncomment the following line to change how often to auto-update (in days).
# export UPDATE_OSH_DAYS=13

# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"

# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"

# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"

# Uncomment the following line to display red dots whilst waiting for completion.
# COMPLETION_WAITING_DOTS="true"

# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"

# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# HIST_STAMPS="mm/dd/yyyy"

# Would you like to use another custom folder than $OSH/custom?
# OSH_CUSTOM=/path/to/new-custom-folder

# To disable the uses of "sudo" by oh-my-bash, please set "false" to
# this variable.  The default behavior for the empty value is "true".
OMB_USE_SUDO=true

# Which completions would you like to load? (completions can be found in ~/.oh-my-bash/completions/*)
# Custom completions may be added to ~/.oh-my-bash/custom/completions/
# Example format: completions=(ssh git bundler gem pip pip3)
# Add wisely, as too many completions slow down shell startup.
completions=(
  git
  composer
  ssh
)

# Which aliases would you like to load? (aliases can be found in ~/.oh-my-bash/aliases/*)
# Custom aliases may be added to ~/.oh-my-bash/custom/aliases/
# Example format: aliases=(vagrant composer git-avh)
# Add wisely, as too many aliases slow down shell startup.
aliases=(
  general
)

# Which plugins would you like to load? (plugins can be found in ~/.oh-my-bash/plugins/*)
# Custom plugins may be added to ~/.oh-my-bash/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git bundler osx rake ruby)
# Which plugins would you like to conditionally load? (plugins can be found in ~/.oh-my-bash/plugins/*)
# Custom plugins may be added to ~/.oh-my-bash/custom/plugins/
# Example format: 
#  if [ "$DISPLAY" ] || [ "$SSH" ]; then
#      plugins+=(tmux-autoattach)
#  fi

source "$OSH"/oh-my-bash.sh

# User configuration
# export MANPATH="/usr/local/man:$MANPATH"

# You may need to manually set your language environment
# export LANG=en_US.UTF-8

# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
#   export EDITOR='vim'
# else
#   export EDITOR='mvim'
# fi

# Compilation flags
# export ARCHFLAGS="-arch x86_64"

# ssh
# export SSH_KEY_PATH="~/.ssh/rsa_id"

# Set personal aliases, overriding those provided by oh-my-bash libs,
# plugins, and themes. Aliases can be placed here, though oh-my-bash
# users are encouraged to define aliases within the OSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#
# Example aliases
# alias bashconfig="mate ~/.bashrc"
# alias ohmybash="mate ~/.oh-my-bash"

How can i resolve this error? Why is the modules not preinstalled? How can i install

akinomyoga commented 2 years ago
plugins=(git bundler osx rake ruby)

Oh-my-bash does not bundle these plugins with itself, so you need to prepare these plugins by yourself. How did you set these plugins up?

Can you provide us with the result of the following commands in your oh-my-bash session?

$ echo "$OSH_CUSTOM"
$ ls -l "$OSH_CUSTOM"/plugins
$ ls -l "$OSH_CUSTOM"/plugins/*/*.plugin.sh
incrypto32 commented 2 years ago

@akinomyoga I haven't done anything to set it up. other than installing oh-my-bash and changing the bashrc

Here is the output that you asked for

Screenshot 2022-04-04 at 9 07 51 AM
akinomyoga commented 2 years ago

@akinomyoga I haven't done anything to set it up. other than installing oh-my-bash and changing the bashrc

Here is the output that you asked for

OK, thanks. Then, unfortunately, oh-my-bash currently does not support these plugins. If you would like to use them, you need to port them from oh-my-zsh for Bash by yourself. Also, contributions to oh-my-bash are always welcome!

akinomyoga commented 1 year ago

@astrolavos1998 Can we move to this thread?

As far as I understand, OMB has never supported these plugins, bundler, osx, rake, and ruby. However, in older versions of OMB, we haven't checked the plugins that are not found. This means that these plugin names specified in your .bashrc are just ignored in the version that you used before the update.

I became a maintainer of this project just about one year and half ago, so I'm not familiar with the situation before that. But maybe the default .bashrc at some point contained these unsupported plugin names. I'll take a look into the commit history.

akinomyoga commented 1 year ago

The plugins array in the current version of the template came from commit 53fb8037, and the previous version actually came from the initial commit adc673b0. This means that the OMB has never provided these plugin names in the template.

@astrolavos1998 Have you migrated from Zsh with Oh-My-Zsh (OMZ) to Bash with Oh-My-Bash (OMB) in the past? If so, maybe that is the reason why you have these names in the plugins array.

I guess you can just remove these names (bundler, osx, rake, and ruby) from the plugins array in your .bashrc. I guess it doesn't matter because you seem to have not noticed that OMB hasn't supported these plugins, so I'd assume you do not actually use these plugins. If you want to use them, we need to port the plugins from the upstream OMZ. Contributions are always welcome!

akinomyoga commented 1 year ago

Hmm, I found that the wiki page of Plugins contains an example of plugins with these unsupported plugins. I'm not sure where this wiki page originally came from, but anyway need to fix this.

akinomyoga commented 1 year ago

I have updated the wiki page