All Projects → andreyorst → Plug.kak

andreyorst / Plug.kak

Licence: mit
Plugin manager for Kakoune

Projects that are alternatives of or similar to Plug.kak

Virtualapp
Virtual Engine for Android(Support 12.0 in business version)
Stars: ✭ 8,413 (+6969.75%)
Mutual labels:  plugin, plugin-manager
Sheldon
A fast, configurable, shell plugin manager
Stars: ✭ 144 (+21.01%)
Mutual labels:  plugin, plugin-manager
Flutter Reaction Button
Flutter reaction button plugin it is fully customizable widget such as Facebook reaction button
Stars: ✭ 111 (-6.72%)
Mutual labels:  plugin
Pomodoro Tm
Pomodoro timer for IntelliJ 🍅⏲
Stars: ✭ 117 (-1.68%)
Mutual labels:  plugin
Vue D3
a vue.js plugin for D3
Stars: ✭ 113 (-5.04%)
Mutual labels:  plugin
Responsive Sidebar Navigation
An easy-to-integrate side, vertical navigation, ideal for dashboards and admin areas.
Stars: ✭ 111 (-6.72%)
Mutual labels:  plugin
Obs Virtual Cam
obs-studio plugin to simulate a directshow webcam
Stars: ✭ 1,558 (+1209.24%)
Mutual labels:  plugin
Pg Calendar
📆 beautiful and eidetic date picker
Stars: ✭ 109 (-8.4%)
Mutual labels:  plugin
Datepicker
仿滴滴出行预约打车IOS风格3D时间选择器 🌲
Stars: ✭ 118 (-0.84%)
Mutual labels:  plugin
Git Blame.vim
See Git Blame information in the status bar for the currently selected line.
Stars: ✭ 113 (-5.04%)
Mutual labels:  plugin
Fanray
A blog built with ASP.NET Core
Stars: ✭ 117 (-1.68%)
Mutual labels:  plugin
Jira Vim
A vim plugin to access your Jira workspace directly from Vim
Stars: ✭ 113 (-5.04%)
Mutual labels:  plugin
Footer Reveal
A jQuery plugin for easy implementation of the 'fixed/reveal' footer effect. Demo here:
Stars: ✭ 111 (-6.72%)
Mutual labels:  plugin
Chartjs Plugin Dragdata
Draggable data points plugin for Chart.js
Stars: ✭ 116 (-2.52%)
Mutual labels:  plugin
Android Styler
Android Studio / IDEA plugin that helps to create styles
Stars: ✭ 110 (-7.56%)
Mutual labels:  plugin
Qqlight Websocket
QQLight机器人WebSocket-RPC插件,让你能够使用任何语言编写QQ机器人程序
Stars: ✭ 118 (-0.84%)
Mutual labels:  plugin
Search Plugins
Search plugins for the search feature
Stars: ✭ 1,860 (+1463.03%)
Mutual labels:  plugin
Poetry Pycharm Plugin
A PyCharm plugin for poetry
Stars: ✭ 113 (-5.04%)
Mutual labels:  plugin
Sampgdk
Write SA-MP gamemodes in C/C++
Stars: ✭ 113 (-5.04%)
Mutual labels:  plugin
Changeskin
Allows your players to change their skin by command
Stars: ✭ 118 (-0.84%)
Mutual labels:  plugin

plug.kak

GitHub issues license

plug.kak

plug.kak is a plugin manager for Kakoune editor, that was inspired by vim-plug and use-package. It helps installing and updating plugins, can run post-update actions, and isolates plugin configuration within itself.

Installation

plug.kak can be installed anywhere in your system, but to manage itself along with other plugins it requires to be installed in the same place where other plugins are. By default, plug.kak installs plugins to your %val{config}/plugins. You can install plug.kak there, or elsewhere, and change the %opt{plug_install_dir} option accordingly.

From now on, I'm assuming that you've decided to install plug.kak to the default configuration directory. First, we need a directory for plugins:

mkdir -p ~/.config/kak/plugins/

After directory was created, we need to clone plug.kak repository there with this command:

git clone https://github.com/andreyorst/plug.kak.git ~/.config/kak/plugins/plug.kak

Now, when plug.kak is installed, we need to tell Kakoune about it. To do so use Kakoune's source command:

source "%val{config}/plugins/plug.kak/rc/plug.kak"
plug "andreyorst/plug.kak" noload

It's not recommended to use autoload directory with plug.kak, due to loading order which can be different on different systems, depending on find. It is possible that plug.kak would be loaded before kakrc.kak and this will result in errors. Therefore using source from kakrc is more reliable approach. You don't need autoload if you're using plug.kak anyways, because it was created in order to avoid using autoload.

As I've already mentioned plug.kak can work from any directory, but if you installed it to your plugin installation directory, plug.kak will be able to update itself along with another plugins.

Alternatively, you can automate this process, by adding the following snippet to your kakrc.kak:

evaluate-commands %sh{
    plugins="$HOME/.config/kak/plugins"
    mkdir -p $plugins
    [ ! -e "$plugins/plug.kak" ] && \
        git clone -q https://github.com/andreyorst/plug.kak "$plugins/plug.kak"
    printf "%s\n" "source '$plugins/plug.kak/rc/plug.kak'"
}
plug "andreyorst/plug.kak" noload

This will check if `plug.kak** is installed, and if not will automatically create all needed directories, and clone plug.kak repository.

Note: plug "andreyorst/plug.kak" noload is needed to register plug.kak as manually loaded plugin, so plug-clean will not delete plug.kak.

Now you can use plug.kak.

Usage

You can specify what plugins to install and load by using plug command. This command accepts one-or-more arguments, which are keywords and attributes, that change how plug.kak behaves.

The first strict rule of the plug command is that the first argument is always the plugin name formatted as in GitHub URL: "author/repository".

plug "author/repository"

By default plug.kak will look for this plugin at GitHub.com, and download it for you. If you want to install a plugin from place other than GitHub, like GitLab or Gitea, plug also accepts URL as first parameter. So in most cases it is enough to add this into your kakrc to use a plugin:

plug "delapouite/kakoune-text-objects"

Or with URL:

plug "https://gitlab.com/Screwtapello/kakoune-inc-dec"

You also can use different git domain by setting it with the plug_git_domain option.

After adding this, you need to either re-source your kakrc or restart Kakoune to let plug.kak know that configuration was changed. After that you can use plug-install command to install new plugins. More information about other commands available in Commands section.

Now let's discuss what plug command can do.

Keywords and attributes

As was already mentioned plug command accepts optional attributes, that change how plug.kak works, or add additional steps for plug to perform for you.

These are available keywords:

Branch, Tag or Commit

plug can checkout a plugin to desired branch, commit or tag before loading it. To do so, add this after plugin name: branch "branch_name", tag "tag_name" or commit "commit_hash".

Loading subset of files from plugin repository

If you want to load only part of a plugin (assuming that plugin allows this) you can use subset keyword followed by filenames. If subset isn't specified plug uses it's default value, which is *.kak, and by specifying a value, you just override default one. Here's an example:

plug "lenormf/kakoune-extra" subset %{
    hatch_terminal.kak
    lineindent.kak
}

Filenames must be specified one per line.

Loading plugin from different path

When developing a plugin, it's nice to have ability to load development version from different place. with path "path/to/plugin" option you now able to load plugins from location that is different from the plug_install_dir path.

plug "plugin_name" load-path "~/Development/plugin_dir"

This is also handy for loading plugins that you do not want to upload. Unfortunately all plug-related commands like plug-update or plug-clean will not work for plugins that aren't installed to plug_install_dir.

Skipping loading of a plugin

Sometimes plugin should be installed, but not loaded until certain event. In such case use noload attribute to skip loading of installed plugin. Useful with plug.kak itself, because it is already loaded by user configuration.

plug "andreyorst/plug.kak" noload

However, not loading the plugin itself doesn't mean that plug command will ignore plugin configuration. We'll discuss what this means later in the handling-user-configuration section.

Automatically do certain tasks on install or update

Some plugins require compilation. Other plugins require to perform another task on each update, or installation. For that plug.kak offers the do keyword, that executes shell code after successful update of plugin or a fresh installation of one. Useful for plugins that need to compile some parts of it.

plug "ul/kak-lsp" do %{
    cargo build --release --locked
    cargo install --force --path .
}

In this example plug.kak will run these cargo commands after kak-lsp is updated, keeping the compiled part in sync with the kakscript part shipped with the kak-lsp plugin.

Installing color schemes

plug.kak is capable of installing color schemes. Basically, the color scheme in Kakoune is an ordinary kakscript, which we call with color-scheme command. That means that we don't need to load themes shipped with the plugin. To tell plug command that plugin is a color-scheme, the theme switch should be used. plug.kak will copy color scheme files to the colors directory located at %val{config}/colors. For example:

plug "alexherbo2/kakoune-dracula-theme" theme

plug "andreyorst/base16-gruvbox.kak" theme config %{
    colorscheme base16-gruvbox-dark-soft
}

Here we install two themes, the kakoune-dracula-theme and a set of base16-gruvbox themes. We specify that these plugins are themes, and then tell plug that we want to set our theme to base16-gruvbox-dark-soft within the config block.

Depth sorting sourced files

Some plugins (ahem, my plugins) sometimes use module structure, that is based on depth. What this means is that if plugin declares a modules, it does it deeper in file tree. For example, if main script is placed in rc/plugin.kak then modules will be declared in rc/modules/module.kak. If module uses something that is prepared by base script it's logical to source it first. But find program, that is used to get list of plugin files can return them in any order. For that plug.kak provides perl based depth-sorting algorithm. It adds a bit of overhead, but can save the day sometimes. You can enable it for all plugins with plug_depth_sort option set to true, and on per-plugin basis by using depth-sort attribute of plug command:

plug "andreyorst/fzf.kak" depth-sort
plug "andreyorst/powerline.kak" no-depth-sort

Disabling depth-sorting on per-plugin is available with no-depth-sort attribute.

Specifying Git domain on per-plugin basis

When you want to install plugin from a domain that is different from your %opt{plug_git_domain} you may use two different methods. First one is to pass URL directly to plug command like so:

plug "https://gitlab.com/screwtapello/kakoune-inc-dec.git"
plug "https://bitbucket.org/KJ_Duncan/kakoune-kotlin.kak.git"

The other is essentially the same, but I find it prettier, and it looks better in plug-list output:

plug "screwtapello/kakoune-inc-dec" domain "gitlab.com"
plug "KJ_Duncan/kakoune-kotlin.kak" domain "bitbucket.org"

Ensure that plugins are installed

plug command can be explicitly told to install the plugin on loading with the ensure keyword. This is handy in case you don't isolate the configuration of the plugin, so you want this plugin to be installed and enabled in any situation.

You also can configure plug.kak plug_always_ensure option to perform this for each and every plugin in your configuration file. This is handy when you want to install new plugins without calling the plug-install command.

Now, let's discuss configuration of plugins with plug command.

Handling user configurations

Common problem with plugin configuration, and configuration of external features in general, is that when this feature is not available, the configuration makes no sense at all.

Previously I've mentioned that noload switch doesn't affect the configuration process of a plugin. That is, the configuration isn't loaded only when the plugin is not installed. Which means that if you decide to install your configuration to a new machine, Kakoune won't throw errors that something isn't available, for example some plugin options.

There's a second strict rule of plug command: every parameter that doesn't have a keyword before it, is treated as plugin configuration.

For example:

plug "andreyorst/fzf.kak" config %{
    map -docstring 'fzf mode' global normal '<c-p>' ': fzf-mode<ret>'
}

In this example I'm setting a Ctrl+p mapping that is meaningful only if the plugin is installed. I've could configure it outside of plug command, but it would fail if I accidentally remove or disable the plugin. In case of configuring it with plug command, I don't need to keep track of other configuration pieces. Everything within the config %{ } block is ordinary kakscript.

The config keyword is optional, you can skip it if you want. Multiple config blocks are supported as well.

Deferring plugin configuration

Sometimes it is unnecessary to configure plugin if it isn't loaded. Since Kakoune added support for module system with provide-module and require-module followed by ModuleLoaded hook it is possible to defer configuration until certain module is loaded. For example, let's look on fzf.kak configuration deferred until fzf module is required:

plug "andreyorst/fzf.kak" config %{
    map -docstring 'fzf mode' global normal '<c-p>' ': fzf-mode<ret>'
} defer "fzf" %{
    set-option global fzf_preview_width '65%'
    set-option global fzf_project_use_tilda true
    evaluate-commands %sh{
        if [ -n "$(command -v fd)" ]; then
            echo "set-option global fzf_file_command %{fd .  --no-ignore --type f --follow --hidden --exclude .git --exclude .svn}"
        else
            echo "set-option global fzf_file_command %{find .  \( -path '*/.svn*' -o -path '*/.git*' \) -prune -o -type f -follow -print}"
        fi
        [ -n "$(command -v bat)" ] && echo "set-option global fzf_highlight_command bat"
        [ -n "${kak_opt_grepcmd}" ] && echo "set-option global fzf_sk_grep_command %{${kak_opt_grepcmd}}"
    }
}

The defer "fzf" %{ ... } block is a configuration block that will be evaluated only when fzf module is loaded.

Since we've touched the configuration of plug.kak itself, let's discuss this topic.

Automatically require deferred module

The demand keyword works only in pair with defer keyword. What it essentially does is calling require-module module at the end of config block (or if there's no config specified it will be the only configuration) with module specified by defer keyword. So this:

plug "andreyorst/fzf.kak" defer fzf %{
    set-option global fzf_project_use_tilda true
} demand

is a shorthand for this:

plug "andreyorst/fzf.kak" defer fzf %{
    set-option global fzf_project_use_tilda true
} config %{
    require-module fzf
}

demand can be placed anywhere after plugin name.

plug.kak Configuration

You can change some bits of plug.kak behavior:

To change these options, I'm recommending to call plug.kak before all plugins with the plug command, specified with noload switch and config keyword like so:

# source plug.kak script
source "%val{config}/plugins/plug.kak/rc/plug.kak"

# call plug.kak with `plug' command
plug "andreyorst/plug.kak" noload config %{
    # configure plug.kak here
}

This means that plug.kak was installed in the plugin installation directory.

Plugin installation directory

By default plug.kak will install plugins to the same directory where it was installed. You can specify where to install plugins, in case you don't like default path. You can do so by changing plug_install_dir option: (note: if you want to use environment variables in the path, consider using shell expansion like in this example)

plug "andreyorst/plug.kak" noload config %{
    set-option global plug_install_dir %sh{ echo $HOME/.cache/kakoune_plugins }
}

plug.kak will download plugins to that directory. Speaking of downloads.

Maximum downloads

plug.kak downloads plugins from github.com asynchronously in the background. By default it allows only 10 simultaneously active downloads. To allow more, or less downloads at the same time you can change plug_max_simultaneous_downloads option.

Default git domain

Although you can use URLs inside plugin field, if you're using plugins from, say, GitLab only, using URLs is tedious. You and set default git domain to https://gitlab.com, or to any other git domain, as long as it is similar to GitHub's in term of URL structure, and use "author/repository" instead of URL in plug command.

I've mentioned that plug is a command. Indeed you can call plug from the Kakoune command prompt, as long as other plug.kak commands.

Commands

plug.kak adds five new commands to Kakoune. I wanted to make it simple, so commands are pretty much self explained by their names, but there are some notes that I still need to mention.

plug-install

This command installs all plugins that were specified in any configuration file. It accepts optional argument, which is plugin name or URL, so it could be used to install plugin from command prompt without restarting Kakoune. This plugin will be enabled automatically, but you still need to add plug command to your configuration files in order to use that plugin after the restart.

plug-update

This command updates all installed plugins. It accepts one optional argument, which is a plugin name, so it could be used to update single plugin. When called from prompt, it shows all installed plugins in the completion menu. This command is used by default with the Enter key on any plugin that is installed in the *plug* buffer.

plug-clean

Remove plugins, that are installed, but disabled or missing in configuration files. This command also accepts optional argument, which is a plugin name, and can be used to remove any installed plugin.

plug-list

This command can be used to manually invoke the *plug* buffer. In this buffer all installed plugins are listed, and checked for updates. The Enter key is remapped to execute plug-update or plug-install command for selected plugin, depending on its state. This command accepts an optional argument noupdate, and if it is specified, check for updates will not be performed.

plug

And last but not least: plug. Load plugin from plugin installation directory by its name.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].