Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lua/richclip/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ CONFIG.with_defaults = function(options)
--- it automatically.
CONFIG.richclip_path = options.richclip_path or nil
--- Set g:clipboard to let richclip take over the clipboard.
CONFIG.set_g_clipboard = options.set_g_clipboard or true
if options.set_g_clipboard == nil then
CONFIG.set_g_clipboard = true
else
CONFIG.set_g_clipboard = options.set_g_clipboard
end
--- To print debug logs
CONFIG.enable_debug = options.debug or false
end
Expand Down