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