diff --git a/index.js b/index.js index e97fdda..eac2e0b 100644 --- a/index.js +++ b/index.js @@ -30,6 +30,8 @@ const nord = { const backgroundColor = nord.nord0; const foregroundColor = nord.nord4; const cursorColor = nord.nord4; +const selectionColor = cursorColor; +const cursorAccentColor = backgroundColor; const borderColor = backgroundColor; const colors = { @@ -60,6 +62,8 @@ exports.decorateConfig = config => { backgroundColor, borderColor, cursorColor: config.cursorColor || cursorColor, + selectionColor: config.selectionColor || selectionColor, + cursorAccentColor: config.cursorAccentColor || cursorAccentColor, colors, cursorShape: config.cursorShape || "BEAM", fontSize: config.fontSize || 16,