Skip to content

Commit

Permalink
GHI-#3 Fix the order of prefered config attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Feb 21, 2017
1 parent 5df93ef commit 45e8e9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ exports.decorateConfig = config => {
borderColor,
cursorColor: cursorColor,
colors,
cursorShape: "BEAM",
cursorShape: config.cursorShape || "BEAM",
fontSize: config.fontSize || 16,
fontFamily: "'Source Code Pro', Hack" || config.fontFamily,
fontFamily: config.fontFamily || "'Source Code Pro', Hack",
termCSS: `
${config.termCSS || ""}
::selection {
Expand Down

0 comments on commit 45e8e9c

Please sign in to comment.