Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
O
oh-my-fish
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
oh-my-fish
Commits
139e14c3
Commit
139e14c3
authored
Mar 11, 2015
by
Jorge
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'rahult-lambda-theme'
parents
ab144c37
7154875c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
2 deletions
+42
-2
themes/l/fish_right_prompt.fish
themes/l/fish_right_prompt.fish
+29
-0
themes/l/readme.md
themes/l/readme.md
+13
-2
No files found.
themes/l/fish_right_prompt.fish
0 → 100644
View file @
139e14c3
# To show the right prompt please set
# set theme_display_rbenv 'yes' (config.fish)
# set theme_display_rbenv_gemset 'yes' (config.fish)
function _ruby_version
echo (command rbenv version-name | sed 's/\n//')
end
function _ruby_gemset
echo (command rbenv gemset active ^/dev/null | sed -e 's| global||')
end
function fish_right_prompt
if [ "$theme_display_rbenv" = 'yes' ]
set -l red (set_color red)
set -l normal (set_color normal)
set ruby_info $red(_ruby_version)
if [ "$theme_display_rbenv_gemset" = 'yes' ]
if [ (_ruby_gemset) ]
set -l ruby_gemset $red(_ruby_gemset)
set ruby_info "$ruby_info@$ruby_gemset"
end
end
echo -n -s $ruby_info $normal
end
end
themes/l/readme.md
View file @
139e14c3
...
@@ -6,9 +6,20 @@ A theme inspired by [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh/blob/m
...
@@ -6,9 +6,20 @@ A theme inspired by [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh/blob/m




#### Characteristics
#### Characteristics
*
Current branch
*
Current branch
*
Dirty working directory
*
Dirty working directory
*
Working directory
*
Working directory
\ No newline at end of file
Only if fish_theme_l_right_prompt variable is set true within config.fish
```
fish
set theme_display_rbenv 'yes'
set theme_display_rbenv_gemset 'yes'
```
*
Rbenv Ruby Version
*
Rbenv Ruby Gemset

Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment