fix typos identified by 'misspell' tool

This commit is contained in:
Andrew Lavery 2018-11-27 21:49:05 -08:00
parent b909cb625d
commit 43321e96a9
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ func getConfig() *config.Config {
flag.BoolVar(&showVersion, "version", showVersion, "Output version information")
ignore := false
flag.BoolVar(&ignore, "ignore-config", ignore, "Ignore user config files and use defauls")
flag.BoolVar(&ignore, "ignore-config", ignore, "Ignore user config files and use defaults")
if ignore {
return &config.DefaultConfig
}

View File

@ -40,7 +40,7 @@ func main() {
shellStr = conf.Shell
}
os.Setenv("TERM", "xterm-256color") // contraversial! easier than installing terminfo everywhere, but obviously going to be slightly different to xterm functionality, so we'll see...
os.Setenv("TERM", "xterm-256color") // controversial! easier than installing terminfo everywhere, but obviously going to be slightly different to xterm functionality, so we'll see...
os.Setenv("COLORTERM", "truecolor")
shell := exec.Command(shellStr)