PMS Manager
The PMS Manager is what you will use most of the time when you want to interact with the PMS framework. This allows you to do things such as enable/disable plugins and switch to different themes.
You can run pms help at any time to get information on all the commands the PMS Manager supports.
Getting Help
Use pms help to list available commands. For detailed help on a specific command or subcommand, run:
pms help plugin
pms help plugin enable
pms help theme switchManaging Plugins
Plugins modify shell behaviour such as loading auto-completion scripts, adding aliases, or modifying shell options. Plugins are managed using the pms plugin command.
Listing Current Plugins
pms plugin listEnabling Plugins
pms plugin enable [PLUGIN]When fzf is installed and no plugin is specified, an interactive picker is displayed to help choose a plugin.
Disabling Plugins
Managing Themes
Themes modify how your shell looks. These are things such as colors and usually include a kick ass command prompt.
Note Some themes may enable or disable PMS plugins for functionality. An example of this would be a theme that would require the "git-prompt" plugin so it has access to that functionality. This is done for you so you don't need to do this by hand {: .notice--warning}
Listing Themes
This will show you all the available themes you are able to switch to.
Switching Themes
If fzf is available and no theme is provided, an interactive picker is shown to select the desired theme.
Managing your Dotfiles
Dotfile management is provided by the dotfiles plugin, which is enabled by default. Dotfiles are a very important part of being a developer and most like to make sure those files are backed up. The PMS Manager supports managing your dotfiles using git.
The repository that will be managed will look something like this
Requirements
git repository
Initializing dotfile management
To get started, just run pms dotfiles init and follow the instructions
Initializing by hand
To start fresh with a new git repo, follow these steps:
NOTE: You will need to make sure you have a git repository already created that would allow you to push to.
If you already have an existing dotfiles repository, follow these steps:
NOTE: You may run into issues when you run "git checkout". You will need to resolve those before you can make sure that everything is set up correctly.
Adding files
Adding files is quick, just run pms dotfiles add FILE and PMS will add the file to your dotfiles repository, make a commit, and push up your changes.
Pulling down changes
Run pms dotfiles pull if you have made any changes in your repository that you want to pull down to your machine.
Checking repository status
Use pms dotfiles status to see which files have been modified in your dotfiles repository.
Viewing changes
To review the exact changes in your files before committing, run:
Last updated