my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

334 lines
14 KiB

3 years ago
  1. <p align="center"><img src="https://s3.amazonaws.com/ohmyzsh/oh-my-zsh-logo.png" alt="Oh My Zsh"></p>
  2. Oh My Zsh is an open source, community-driven framework for managing your [zsh](https://www.zsh.org/) configuration.
  3. Sounds boring. Let's try again.
  4. **Oh My Zsh will not make you a 10x developer...but you may feel like one.**
  5. Once installed, your terminal shell will become the talk of the town _or your money back!_ With each keystroke in your command prompt, you'll take advantage of the hundreds of powerful plugins and beautiful themes. Strangers will come up to you in cafés and ask you, _"that is amazing! are you some sort of genius?"_
  6. Finally, you'll begin to get the sort of attention that you have always felt you deserved. ...or maybe you'll use the time that you're saving to start flossing more often. 😬
  7. To learn more, visit [ohmyz.sh](https://ohmyz.sh), follow [@ohmyzsh](https://twitter.com/ohmyzsh) on Twitter, and join us on [Discord](https://discord.gg/ohmyzsh).
  8. [![CI](https://github.com/ohmyzsh/ohmyzsh/workflows/CI/badge.svg)](https://github.com/ohmyzsh/ohmyzsh/actions?query=workflow%3ACI)
  9. [![Follow @ohmyzsh](https://img.shields.io/twitter/follow/ohmyzsh?label=Follow+@ohmyzsh&style=flat)](https://twitter.com/intent/follow?screen_name=ohmyzsh)
  10. [![Discord server](https://img.shields.io/discord/642496866407284746)](https://discord.gg/ohmyzsh)
  11. [![Gitpod ready](https://img.shields.io/badge/Gitpod-ready-blue?logo=gitpod)](https://gitpod.io/#https://github.com/ohmyzsh/ohmyzsh)
  12. [![huntr.dev](https://cdn.huntr.dev/huntr_security_badge_mono.svg)](https://huntr.dev/bounties/disclose/?utm_campaign=ohmyzsh%2Fohmyzsh&utm_medium=social&utm_source=github&target=https%3A%2F%2Fgithub.com%2Fohmyzsh%2Fohmyzsh)
  13. ## Getting Started
  14. ### Prerequisites
  15. - A Unix-like operating system: macOS, Linux, BSD. On Windows: WSL2 is preferred, but cygwin or msys also mostly work.
  16. - [Zsh](https://www.zsh.org) should be installed (v4.3.9 or more recent is fine but we prefer 5.0.8 and newer). If not pre-installed (run `zsh --version` to confirm), check the following wiki instructions here: [Installing ZSH](https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH)
  17. - `curl` or `wget` should be installed
  18. - `git` should be installed (recommended v2.4.11 or higher)
  19. ### Basic Installation
  20. Oh My Zsh is installed by running one of the following commands in your terminal. You can install this via the command-line with either `curl`, `wget` or another similar tool.
  21. | Method | Command |
  22. |:----------|:--------------------------------------------------------------------------------------------------|
  23. | **curl** | `sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"` |
  24. | **wget** | `sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"` |
  25. | **fetch** | `sh -c "$(fetch -o - https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"` |
  26. _Note that previous configuration in `.zshrc` will be placed in `.pre-oh-my-zsh`. After installation you can move configuration you want to preserve into `.zshrc`._
  27. #### Manual inspection
  28. It's a good idea to inspect the install script from projects you don't yet know. You can do
  29. that by downloading the install script first, looking through it so everything looks normal,
  30. then running it:
  31. ```sh
  32. wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh
  33. sh install.sh
  34. ```
  35. ## Using Oh My Zsh
  36. ### Plugins
  37. Oh My Zsh comes with a shitload of plugins for you to take advantage of. You can take a look in the [plugins](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins) directory and/or the [wiki](https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins) to see what's currently available.
  38. #### Enabling Plugins
  39. Once you spot a plugin (or several) that you'd like to use with Oh My Zsh, you'll need to enable them in the `.zshrc` file. You'll find the zshrc file in your `$HOME` directory. Open it with your favorite text editor and you'll see a spot to list all the plugins you want to load.
  40. ```sh
  41. vi ~/.zshrc
  42. ```
  43. For example, this might begin to look like this:
  44. ```sh
  45. plugins=(
  46. git
  47. bundler
  48. dotenv
  49. macos
  50. rake
  51. rbenv
  52. ruby
  53. )
  54. ```
  55. _Note that the plugins are separated by whitespace (spaces, tabs, new lines...). **Do not** use commas between them or it will break._
  56. #### Using Plugins
  57. Each plugin includes a __README__, documenting it. This README should show the aliases (if the plugin adds any) and extra goodies that are included in that particular plugin.
  58. ### Themes
  59. We'll admit it. Early in the Oh My Zsh world, we may have gotten a bit too theme happy. We have over one hundred and fifty themes now bundled. Most of them have [screenshots](https://github.com/ohmyzsh/ohmyzsh/wiki/Themes) on the wiki (We are working on updating this!). Check them out!
  60. #### Selecting a Theme
  61. _Robby's theme is the default one. It's not the fanciest one. It's not the simplest one. It's just the right one (for him)._
  62. Once you find a theme that you'd like to use, you will need to edit the `~/.zshrc` file. You'll see an environment variable (all caps) in there that looks like:
  63. ```sh
  64. ZSH_THEME="robbyrussell"
  65. ```
  66. To use a different theme, simply change the value to match the name of your desired theme. For example:
  67. ```sh
  68. ZSH_THEME="agnoster" # (this is one of the fancy ones)
  69. # see https://github.com/ohmyzsh/ohmyzsh/wiki/Themes#agnoster
  70. ```
  71. _Note: many themes require installing the [Powerline Fonts](https://github.com/powerline/fonts) in order to render properly._
  72. Open up a new terminal window and your prompt should look something like this:
  73. ![Agnoster theme](https://cloud.githubusercontent.com/assets/2618447/6316862/70f58fb6-ba03-11e4-82c9-c083bf9a6574.png)
  74. In case you did not find a suitable theme for your needs, please have a look at the wiki for [more of them](https://github.com/ohmyzsh/ohmyzsh/wiki/External-themes).
  75. If you're feeling feisty, you can let the computer select one randomly for you each time you open a new terminal window.
  76. ```sh
  77. ZSH_THEME="random" # (...please let it be pie... please be some pie..)
  78. ```
  79. And if you want to pick random theme from a list of your favorite themes:
  80. ```sh
  81. ZSH_THEME_RANDOM_CANDIDATES=(
  82. "robbyrussell"
  83. "agnoster"
  84. )
  85. ```
  86. If you only know which themes you don't like, you can add them similarly to an ignored list:
  87. ```sh
  88. ZSH_THEME_RANDOM_IGNORED=(pygmalion tjkirch_mod)
  89. ```
  90. ### FAQ
  91. If you have some more questions or issues, you might find a solution in our [FAQ](https://github.com/ohmyzsh/ohmyzsh/wiki/FAQ).
  92. ## Advanced Topics
  93. If you're the type that likes to get their hands dirty, these sections might resonate.
  94. ### Advanced Installation
  95. Some users may want to manually install Oh My Zsh, or change the default path or other settings that
  96. the installer accepts (these settings are also documented at the top of the install script).
  97. #### Custom Directory
  98. The default location is `~/.oh-my-zsh` (hidden in your home directory, you can access it with `cd ~/.oh-my-zsh`)
  99. If you'd like to change the install directory with the `ZSH` environment variable, either by running
  100. `export ZSH=/your/path` before installing, or by setting it before the end of the install pipeline
  101. like this:
  102. ```sh
  103. ZSH="$HOME/.dotfiles/oh-my-zsh" sh install.sh
  104. ```
  105. #### Unattended install
  106. If you're running the Oh My Zsh install script as part of an automated install, you can pass the
  107. flag `--unattended` to the `install.sh` script. This will have the effect of not trying to change
  108. the default shell, and also won't run `zsh` when the installation has finished.
  109. ```sh
  110. sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended
  111. ```
  112. #### Installing from a forked repository
  113. The install script also accepts these variables to allow installation of a different repository:
  114. - `REPO` (default: `ohmyzsh/ohmyzsh`): this takes the form of `owner/repository`. If you set
  115. this variable, the installer will look for a repository at `https://github.com/{owner}/{repository}`.
  116. - `REMOTE` (default: `https://github.com/${REPO}.git`): this is the full URL of the git repository
  117. clone. You can use this setting if you want to install from a fork that is not on GitHub (GitLab,
  118. Bitbucket...) or if you want to clone with SSH instead of HTTPS (`[email protected]:user/project.git`).
  119. _NOTE: it's incompatible with setting the `REPO` variable. This setting will take precedence._
  120. - `BRANCH` (default: `master`): you can use this setting if you want to change the default branch to be
  121. checked out when cloning the repository. This might be useful for testing a Pull Request, or if you
  122. want to use a branch other than `master`.
  123. For example:
  124. ```sh
  125. REPO=apjanke/oh-my-zsh BRANCH=edge sh install.sh
  126. ```
  127. #### Manual Installation
  128. ##### 1. Clone the repository
  129. ```sh
  130. git clone https://github.com/ohmyzsh/ohmyzsh.git ~/.oh-my-zsh
  131. ```
  132. ##### 2. *Optionally*, backup your existing `~/.zshrc` file
  133. ```sh
  134. cp ~/.zshrc ~/.zshrc.orig
  135. ```
  136. ##### 3. Create a new zsh configuration file
  137. You can create a new zsh config file by copying the template that we have included for you.
  138. ```sh
  139. cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
  140. ```
  141. ##### 4. Change your default shell
  142. ```sh
  143. chsh -s $(which zsh)
  144. ```
  145. You must log out from your user session and log back in to see this change.
  146. ##### 5. Initialize your new zsh configuration
  147. Once you open up a new terminal window, it should load zsh with Oh My Zsh's configuration.
  148. ### Installation Problems
  149. If you have any hiccups installing, here are a few common fixes.
  150. - You _might_ need to modify your `PATH` in `~/.zshrc` if you're not able to find some commands after
  151. switching to `oh-my-zsh`.
  152. - If you installed manually or changed the install location, check the `ZSH` environment variable in
  153. `~/.zshrc`.
  154. ### Custom Plugins and Themes
  155. If you want to override any of the default behaviors, just add a new file (ending in `.zsh`) in the `custom/` directory.
  156. If you have many functions that go well together, you can put them as a `XYZ.plugin.zsh` file in the `custom/plugins/` directory and then enable this plugin.
  157. If you would like to override the functionality of a plugin distributed with Oh My Zsh, create a plugin of the same name in the `custom/plugins/` directory and it will be loaded instead of the one in `plugins/`.
  158. ## Getting Updates
  159. By default, you will be prompted to check for updates every 2 weeks. You can choose other update modes by adding a line to your `~/.zshrc` file, **before Oh My Zsh is loaded**:
  160. 1. Automatic update without confirmation prompt:
  161. ```sh
  162. zstyle ':omz:update' mode auto
  163. ```
  164. 2. Just offer a reminder every few days, if there are updates available:
  165. ```sh
  166. zstyle ':omz:update' mode reminder
  167. ```
  168. 3. To disable automatic updates entirely:
  169. ```sh
  170. zstyle ':omz:update' mode disabled
  171. ```
  172. NOTE: you can control how often Oh My Zsh checks for updates with the following setting:
  173. ```sh
  174. # This will check for updates every 7 days
  175. zstyle ':omz:update' frequency 7
  176. # This will check for updates every time you open the terminal (not recommended)
  177. zstyle ':omz:update' frequency 0
  178. ```
  179. ### Manual Updates
  180. If you'd like to update at any point in time (maybe someone just released a new plugin and you don't want to wait a week?) you just need to run:
  181. ```sh
  182. omz update
  183. ```
  184. Magic! 🎉
  185. ## Uninstalling Oh My Zsh
  186. Oh My Zsh isn't for everyone. We'll miss you, but we want to make this an easy breakup.
  187. If you want to uninstall `oh-my-zsh`, just run `uninstall_oh_my_zsh` from the command-line. It will remove itself and revert your previous `bash` or `zsh` configuration.
  188. ## How do I contribute to Oh My Zsh?
  189. Before you participate in our delightful community, please read the [code of conduct](CODE_OF_CONDUCT.md).
  190. I'm far from being a [Zsh](https://www.zsh.org/) expert and suspect there are many ways to improve – if you have ideas on how to make the configuration easier to maintain (and faster), don't hesitate to fork and send pull requests!
  191. We also need people to test out pull-requests. So take a look through [the open issues](https://github.com/ohmyzsh/ohmyzsh/issues) and help where you can.
  192. See [Contributing](CONTRIBUTING.md) for more details.
  193. ### Do NOT send us themes
  194. We have (more than) enough themes for the time being. Please add your theme to the [external themes](https://github.com/ohmyzsh/ohmyzsh/wiki/External-themes) wiki page.
  195. ## Contributors
  196. Oh My Zsh has a vibrant community of happy users and delightful contributors. Without all the time and help from our contributors, it wouldn't be so awesome.
  197. Thank you so much!
  198. ## Follow Us
  199. We're on social media:
  200. - [@ohmyzsh](https://twitter.com/ohmyzsh) on Twitter. You should follow it.
  201. - [Facebook](https://www.facebook.com/Oh-My-Zsh-296616263819290/) poke us.
  202. - [Instagram](https://www.instagram.com/_ohmyzsh/) tag us in your post showing Oh My Zsh!
  203. - [Discord](https://discord.gg/ohmyzsh) to chat with us!
  204. ## Merchandise
  205. We have [stickers, shirts, and coffee mugs available](https://shop.planetargon.com/collections/oh-my-zsh?utm_source=github) for you to show off your love of Oh My Zsh. Again, you will become the talk of the town!
  206. ## License
  207. Oh My Zsh is released under the [MIT license](LICENSE.txt).
  208. ## About Planet Argon
  209. ![Planet Argon](https://pa-github-assets.s3.amazonaws.com/PARGON_logo_digital_COL-small.jpg)
  210. Oh My Zsh was started by the team at [Planet Argon](https://www.planetargon.com/?utm_source=github), a [Ruby on Rails development agency](https://www.planetargon.com/skills/ruby-on-rails-development?utm_source=github). Check out our [other open source projects](https://www.planetargon.com/open-source?utm_source=github).