mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
25 lines
498 B
Nix
25 lines
498 B
Nix
{
|
|
empty = {
|
|
plugins.vim-slime.enable = true;
|
|
};
|
|
|
|
example = {
|
|
plugins.vim-slime = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
target = "screen";
|
|
vimterminal_cmd = null;
|
|
no_mappings = false;
|
|
paste_file = "$HOME/.slime_paste";
|
|
preserve_curpos = true;
|
|
default_config = {
|
|
socket_name = "default";
|
|
target_pane = "{last}";
|
|
};
|
|
dont_ask_default = false;
|
|
bracketed_paste = false;
|
|
};
|
|
};
|
|
};
|
|
}
|