Oopsie
This commit is contained in:
parent
8fc42a9a64
commit
a756980ecc
|
@ -4,14 +4,24 @@ Application.put_env(:elixir, :ansi_enabled, true)
|
|||
|
||||
IEx.configure(
|
||||
colors: [enabled: true],
|
||||
default_prompt: [
|
||||
"\e[G", # ANSI CHA, move cursor to column 1
|
||||
:magenta,
|
||||
"%prefix", # IEx prompt variable
|
||||
"#",
|
||||
"%counter", # IEx prompt variable
|
||||
">", # plain string
|
||||
:reset
|
||||
] |> IO.ANSI.format |> IO.chardata_to_string
|
||||
inspect: [
|
||||
pretty: true,
|
||||
limit: :infinity
|
||||
],
|
||||
default_prompt:
|
||||
[
|
||||
# ANSI CHA, move cursor to column 1
|
||||
"\e[G",
|
||||
:magenta,
|
||||
# IEx prompt variable
|
||||
"%prefix",
|
||||
"#",
|
||||
# IEx prompt variable
|
||||
"%counter",
|
||||
# plain string
|
||||
">",
|
||||
:reset
|
||||
]
|
||||
|> IO.ANSI.format()
|
||||
|> IO.chardata_to_string()
|
||||
)
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
# fi
|
||||
|
||||
paru -Sy --needed --noconfirm \
|
||||
watchexec \
|
||||
fswatch watchexec \
|
||||
fwupd \
|
||||
docker `# Containers` \
|
||||
ncdu `# Disk Usage Analyzer` \
|
||||
|
|
Reference in a new issue